From 5e2cf95f2922218a3834990478f4259e679418ed Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 01:46:52 +0100 Subject: [PATCH 1/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20score=20TLA=20overlays=20against?= =?UTF-8?q?=20their=20own=20ROM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve TLA overlay sources, complete extents and compilation units through the selected game. Keep partial diagnostics available and retain strict reference and boundary checks. Co-Authored-By: OpenAI Codex --- .agents/TOOLING.md | 6 ++ TODO.md | 12 +++ tools/alchemy/src/overlay/score.rs | 156 ++++++++++++++++++++++++----- tools/alchemy/src/score/cli.rs | 2 +- tools/alchemy/src/score/mod.rs | 44 +++++--- 5 files changed, 181 insertions(+), 39 deletions(-) diff --git a/.agents/TOOLING.md b/.agents/TOOLING.md index f39c5d7511..ae58579470 100644 --- a/.agents/TOOLING.md +++ b/.agents/TOOLING.md @@ -70,6 +70,12 @@ generation and reading as above. Historical dossiers keep their original command transcripts; they are not instructions to resurrect aliases. No retired TypeScript entry points or invented family or wave commands. +Overlay scoring selects the game explicitly: `alchemy score RESOURCE:ADDRESS +--target tla` reads TLA's register, reviewed boundaries and canonical English +ROM; omit `--target` for TBS. Arbitrary `--rom` overrides cannot substitute a +different reference. Selecting a member of an exact overlay unit still verifies +the complete unit. Default score work directories are under ignored `out/score/`. + For another GBA game, carry portable decoding, comparison, bounded recovery and compiler invocation plus its minimal build integration, not Golden Sun ownership, asset offsets or agent machinery. diff --git a/TODO.md b/TODO.md index 4a828c039a..2a5e0211c1 100644 --- a/TODO.md +++ b/TODO.md @@ -30,6 +30,18 @@ and 1,043,350 across all 114 overlays. Grow verified source coverage against that fixed inventory; its denominator is not a claim of a complete TLA build. Credit only ranges meeting [COMPLETION](.agents/COMPLETION.md). +- Close the field-script operand module at `08025b58–08026320` using TBS's + `FIELD/COMMON/SCRIPT/OPERANDS.C`. A bounded cross-game probe reproduced + 38 complete functions (1,820 bytes); three 2-halfword scheduling differences + remain at `08025bb4` (46 bytes), `08025c5c` (46), and `08025f9c` (52). + The three dispatchers bind their handler table to `0802f2dc`, independently + read from their reference literal pools. Five ordinary source hypotheses + did not close the scheduling differences; do not repeat them or change + compiler flags. Swapped comparison operands, explicit loaded temporaries, + direct Boolean assignment, in-place input narrowing, and switch dispatch + were tested. Candidate and results are under `out/field-operands-*`. + Nothing from this probe is adopted or credited yet. + ### Alchemy builds, Psynergy reads The law in [TOOLING](.agents/TOOLING.md). Psynergy still holds operations that diff --git a/tools/alchemy/src/overlay/score.rs b/tools/alchemy/src/overlay/score.rs index f6dcea8483..0774c114f1 100644 --- a/tools/alchemy/src/overlay/score.rs +++ b/tools/alchemy/src/overlay/score.rs @@ -1,13 +1,11 @@ use crate::compiler::{ + routing::CompilerTarget, source_paths::{SourceOwner, SourcePaths}, symbols::overlay_call_via_base, translation_units::{resolve_overlay_span, TranslationUnits}, }; use crate::overlay::compile::compile_overlay_c; -use crate::overlay::{ - park::{placeholder_span, truth_window}, - retained_source, -}; +use crate::overlay::park::{placeholder_span, truth_window}; use crate::score::{ cli::{options_of, ParseOutcome, USAGE}, render::render, @@ -49,6 +47,9 @@ fn retained_fragment_span( (span < complete).then_some(span) } pub(crate) fn resolve(root: &Path, target: &str) -> Result { + resolve_for(root, target, CompilerTarget::Tbs) +} +fn resolve_for(root: &Path, target: &str, game: CompilerTarget) -> Result { if target.contains(':') { let owner = SourceOwner::parse_argument(target)?; owner @@ -66,7 +67,7 @@ pub(crate) fn resolve(root: &Path, target: &str) -> Result .ok_or_else(|| format!("{target}: not an overlay owner"))?; return Ok(owner); } - let owner = SourcePaths::load(root)? + let owner = SourcePaths::load_for_game(root, game.as_str())? .owner_for_path(Path::new(target))? .ok_or_else(|| format!("{target}: not a mapped overlay source"))?; owner @@ -74,8 +75,20 @@ pub(crate) fn resolve(root: &Path, target: &str) -> Result .ok_or_else(|| format!("{target}: not an overlay source"))?; Ok(owner) } -fn source_for(root: &Path, paths: &SourcePaths, owner: SourceOwner) -> Result { - let candidates = [paths.source_path(owner), retained_source(root, owner)]; +fn source_for( + root: &Path, + paths: &SourcePaths, + owner: SourceOwner, + game: CompilerTarget, +) -> Result { + let candidates = [ + paths.source_path(owner), + root.join(format!( + "games/{}/recon/en/overlays/{}.c", + game.directory(), + owner.legacy_stem() + )), + ]; candidates .into_iter() .find(|candidate| candidate.exists()) @@ -89,10 +102,10 @@ pub fn run(root: &Path, argv: &[String]) -> Result { if options.unit.is_some() { return Err("score complete translation units with alchemy score --unit ID".into()); } - if options.target != crate::compiler::routing::CompilerTarget::Tbs - || argv.iter().any(|arg| arg == "--rom") - { - return Err("overlay scoring currently requires the canonical TBS reference".into()); + if argv.iter().any(|arg| arg == "--rom") { + return Err( + "overlay scoring requires the selected game's canonical reference; omit --rom".into(), + ); } if let Some((output, exact)) = score_instance_owner(root, &options)? { println!("reference_from=rom representation=loader-runtime container_roundtrip=required"); @@ -101,12 +114,13 @@ pub fn run(root: &Path, argv: &[String]) -> Result { } let owner = match (options.owner, options.overlay.as_deref()) { (Some(address), Some(overlay)) => SourceOwner::parse(&format!("{overlay}:{address:08x}")), - _ => resolve(root, &options.source), + _ => resolve_for(root, &options.source, options.target), }; + let game = options.target; let rendered = render_options(root, options)?; println!("reference_from=rom representation=loader-runtime container_roundtrip=required"); print!("{}", rendered.stdout); - if let Ok(owner) = owner { + if let (CompilerTarget::Tbs, Ok(owner)) = (game, owner) { print!( "{}", crate::score::cli::siblings_line(root, owner, rendered.reference_length) @@ -128,8 +142,8 @@ fn score_instance_owner( return Ok(None); }; let owner = SourceOwner::parse(&format!("{overlay}:{address:08x}"))?; - let units = TranslationUnits::load(root)?; - let Some(unit) = units.unit_for_game_owner("tbs", owner) else { + let units = TranslationUnits::load_game(root, options.target)?; + let Some(unit) = units.unit_for_game_owner(options.target.as_str(), owner) else { return Ok(None); }; let Some(member) = unit.instance_owner(overlay, address) else { @@ -192,21 +206,26 @@ pub(crate) fn render_options( .ok_or("expected a resource-qualified overlay owner")?; SourceOwner::parse_argument(&format!("{overlay}:{address:08x}"))? } else { - resolve(root, &target)? + resolve_for(root, &target, options.target)? }; let overlay = resolved.overlay_id().expect("resolved overlay owner"); let address = i64::from(resolved.address()); - let paths = SourcePaths::load(root)?; + let game = crate::overlay::owners::production_target(options.target); + let paths = SourcePaths::load_for_game(root, options.target.as_str())?; let installed = if paths .mapped_source_path(resolved) .is_some_and(|path| path.is_file()) { - placeholder_span(root, resolved)?.and_then(|span| usize::try_from(span).ok()) + let listing = root.join(game.overlay_assembly(&overlay)); + let text = std::fs::read_to_string(&listing) + .map_err(|error| format!("{}: {error}", listing.display()))?; + crate::overlay::park::placeholder_block(&text.lines().collect::>(), address) + .and_then(|row| usize::try_from(row.span).ok()) } else { None }; let span = resolve_overlay_span( - &crate::overlay::reviewed_spans(root)?, + &crate::overlay::owners::reviewed_spans(root, game)?, resolved, installed, options.size, @@ -217,13 +236,19 @@ pub(crate) fn render_options( .canonicalize() .map_err(|error| format!("{}: {error}", explicit.display()))? } else { - source_for(root, &paths, resolved)? + source_for(root, &paths, resolved, options.target)? }; - let work = tempdir().map_err(|error| error.to_string())?; - let reference = work.path().join("reference.bin"); - let image = crate::overlay::rom::canonical_overlay(root, &overlay)?; + let work = root.join( + options + .work + .as_deref() + .ok_or("overlay score needs a work directory")?, + ); + std::fs::create_dir_all(&work).map_err(|error| error.to_string())?; + let reference = work.join("reference-overlay.bin"); + let image = crate::overlay::rom::canonical_overlay_for(root, game, &overlay)?; std::fs::write(&reference, image).map_err(|error| error.to_string())?; - let units = TranslationUnits::load(root)?; + let units = TranslationUnits::load_game(root, options.target)?; options.source = source.to_string_lossy().into_owned(); options.configuration.call_via_base = Some( paths @@ -232,7 +257,7 @@ pub(crate) fn render_options( .unwrap_or_else(|| overlay_call_via_base(&overlay)), ); options.configuration.overlay_extent = Some(span); - if let Some(unit) = units.unit_for_game_owner("tbs", resolved) { + if let Some(unit) = units.unit_for_game_owner(options.target.as_str(), resolved) { if unit.instance_owner(&overlay, resolved.address()).is_some() { return Err(format!( "{} is an instance owner of unit {}; score it through its unit with alchemy score --unit {} --instance {overlay}", @@ -247,7 +272,33 @@ pub(crate) fn render_options( options.owner = Some(address as u32); options.overlay = Some(overlay); options.size = Some(span); - render(root, &options) + let mut rendered = render(root, &options)?; + if options.target == CompilerTarget::Tla { + let next = if crate::score::exact_mismatch(&rendered) { + format!( + "next=alchemy score {:?} --target tla --owner {} --size {span} --work {:?} --first", + options.source, + resolved.id(), + work + ) + } else { + format!("next=alchemy overlay adopt {} --source {:?} --span {span} --target tla-en (complete-owner and production verification still required)", resolved.id(), options.source) + }; + rendered.stdout = rendered + .stdout + .lines() + .map(|line| { + if line.starts_with("next=") { + next.as_str() + } else { + line + } + }) + .collect::>() + .join("\n") + + "\n"; + } + Ok(rendered) } pub fn audit_corpus(root: &Path) -> Result { let directory = root.join("games/THE BROKEN SEAL/recon/en/overlays"); @@ -351,6 +402,59 @@ pub fn audit_corpus(root: &Path) -> Result { #[cfg(test)] mod tests { use super::*; + #[test] + fn lost_age_scores_its_registered_source_and_reviewed_extent() { + let root = crate::compiler::routing::root(); + if !root.join("roms/tla-en.gba").is_file() { + return; + } + let args = [ + "resource_64d:02000038", + "--target", + "tla", + "--work", + "out/tla-en/score-route-test", + ] + .map(str::to_owned); + let ParseOutcome::Options(options) = options_of(root, &args).unwrap() else { + panic!("expected options"); + }; + let result = render_options(root, options).unwrap(); + assert_eq!( + ( + result.candidate_length, + result.reference_length, + result.differing_halfwords + ), + (8, 8, 0) + ); + assert!(result.stdout.contains("--target tla-en")); + let args = ["resource_64d:02000038", "--target", "tla", "--size", "6"].map(str::to_owned); + assert!(run(root, &args) + .unwrap_err() + .contains("complete installed extent 8")); + } + + #[test] + fn lost_age_rejects_unreviewed_extents_and_reference_overrides() { + let root = crate::compiler::routing::root(); + let args = ["resource_64d:02000000", "--target", "tla", "--size", "56"].map(str::to_owned); + assert!(run(root, &args) + .unwrap_err() + .contains("no reviewed complete owner boundary")); + let args = [ + "resource_64d:02000038", + "--target", + "tla", + "--rom", + "roms/tbs-en.gba", + ] + .map(str::to_owned); + assert!(run(root, &args) + .unwrap_err() + .contains("selected game's canonical reference")); + } + #[test] fn explicit_score_span_cannot_override_a_pool_head_or_owner_extent() { let root = crate::compiler::routing::root(); diff --git a/tools/alchemy/src/score/cli.rs b/tools/alchemy/src/score/cli.rs index 9adf3bbc4d..a145e6a3ab 100644 --- a/tools/alchemy/src/score/cli.rs +++ b/tools/alchemy/src/score/cli.rs @@ -185,7 +185,7 @@ fn default_work(root: &Path, source: &str) -> String { .all(|c| c.is_ascii_alphanumeric() || matches!(c, '_' | '-')) }) .unwrap_or("candidate"); - root.join("scratch/score") + root.join("out/score") .join(stem) .to_string_lossy() .into_owned() diff --git a/tools/alchemy/src/score/mod.rs b/tools/alchemy/src/score/mod.rs index 2e1de28593..c2be48815a 100644 --- a/tools/alchemy/src/score/mod.rs +++ b/tools/alchemy/src/score/mod.rs @@ -26,7 +26,6 @@ use crate::compiler::{ symbols::overlay_call_via_base, translation_units::{TranslationUnit, TranslationUnits}, }; -use crate::overlay::rom::canonical_overlay; use std::path::Path; use std::process::Command; pub fn entry(arguments: &[String]) { @@ -70,22 +69,31 @@ fn run(mut options: crate::score::cli::Options) -> Result { if options.instance.is_some() || options.all_instances { return score_instances(&unit, &options); } + if let Some(address) = options.owner { + if !unit.owners.iter().any(|owner| owner.address == address) { + return Err(format!("{id} does not declare 0x{address:08x}")); + } + } if let Some(overlay) = unit.overlay.clone() { - if options.owner.is_none() && unit.exact() { + if unit.exact() && options.patch.is_none() && !options.asm && !options.allocator_order { let work = options.work.as_ref().map(|work| root().join(work)); - return score_overlay_unit(&unit, &overlay, work.as_deref()); + return score_overlay_unit(&unit, &overlay, work.as_deref(), options.owner); } } options.source = unit.source.to_string_lossy().into_owned(); options.configuration.absolute_symbols = unit.canonical_symbols()?; - let default_work = format!("scratch/score/{id}"); + let default_work = format!("out/score/{id}"); let work = options.work.clone().unwrap_or(default_work); let work = root().join(work).to_string_lossy().into_owned(); options.work = Some(work.clone()); if let Some(overlay) = &unit.overlay { options.overlay = Some(overlay.clone()); options.configuration.call_via_base = Some(overlay_call_via_base(overlay)); - let reference = canonical_overlay(root(), overlay)?; + let reference = crate::overlay::rom::canonical_overlay_for( + root(), + crate::overlay::owners::production_target(options.target), + overlay, + )?; let path = Path::new(&work).join(format!( "reference-{}.bin", crate::compiler::sha256::hex(&reference) @@ -95,11 +103,6 @@ fn run(mut options: crate::score::cli::Options) -> Result { options.rom = Some(path.to_string_lossy().into_owned()); } let selected_owner = options.owner; - if let Some(address) = selected_owner { - if !unit.owners.iter().any(|owner| owner.address == address) { - return Err(format!("{id} does not declare 0x{address:08x}")); - } - } let mut output = String::new(); let mut layout_mismatches = Vec::new(); let exact_unit = unit.exact(); @@ -164,8 +167,9 @@ fn score_overlay_unit( unit: &TranslationUnit, overlay: &str, work: Option<&Path>, + first: Option, ) -> Result { - let (output, mismatches) = score_overlay_image(unit, overlay, None, work, false, None)?; + let (output, mismatches) = score_overlay_image(unit, overlay, None, work, false, first)?; if !mismatches.is_empty() && unit.exact() { return Err(format!( "{output}translation unit {} has byte mismatches in {}", @@ -376,6 +380,21 @@ fn fail(message: &str) -> ! { #[cfg(test)] mod tests { use super::*; + #[test] + fn lost_age_selected_overlay_member_still_uses_the_complete_unit() { + if !root().join("roms/tla-en.gba").is_file() { + return; + } + let mut options = crate::score::cli::Options::tbs(String::new()); + options.target = crate::compiler::routing::CompilerTarget::Tla; + options.unit = Some("venus-lighthouse-approach-scene".into()); + options.owner = Some(0x02000038); + options.work = Some("out/tla-en/score-unit-route-test".into()); + let output = run(options).unwrap(); + assert_eq!(output.matches("differing_halfwords=0").count(), 7); + assert!(output.starts_with("scope=translation-unit\nowner=0x02000038\n")); + } + #[test] fn score_unit_all_instances_reports_every_owner_including_alignment_halfword() { use crate::compiler::translation_units::fixture::Repository; @@ -523,7 +542,8 @@ mod tests { assert!(!exact_mismatch(&output(0))); assert!(exact_mismatch(&output(1))); let repository = std::env::temp_dir().join(format!("diff-no-rom-{}", std::process::id())); - let error = canonical_overlay(&repository, "resource_36f").unwrap_err(); + let error = + crate::overlay::rom::canonical_overlay(&repository, "resource_36f").unwrap_err(); assert!(error.contains("roms/tbs-en.gba")); let work = root().join("out/diff-unit-test"); let _ = std::fs::remove_dir_all(&work); From e7912e7c448bd7cc51f99f90fdddef6f91597b09 Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 01:57:17 +0100 Subject: [PATCH 2/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20bound=20the=20TLA=20Venus=20approa?= =?UTF-8?q?ch=20event?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Record its complete reference extent and two resolved call identities. Preserve the negative scene probe and the reproduced lifter defects without granting completion credit. Co-Authored-By: OpenAI Codex --- TODO.md | 14 ++++++++++++++ games/THE LOST AGE/semantic/regions.json | 6 ++++++ games/THE LOST AGE/source-paths.json | 3 +++ 3 files changed, 23 insertions(+) diff --git a/TODO.md b/TODO.md index 2a5e0211c1..8587401171 100644 --- a/TODO.md +++ b/TODO.md @@ -42,6 +42,20 @@ Credit only ranges meeting [COMPLETION](.agents/COMPLETION.md). were tested. Candidate and results are under `out/field-operands-*`. Nothing from this probe is adopted or credited yet. +- Venus approach event `resource_64d:02000510` has a reviewed 5,404-byte extent. + Its loaded reference ends at `02009a2c`, including the last literal. The + private candidate at `out/tla-en/overlay-64d-scene/SCENE.C` scores 5,360 + emitted bytes, 2,293 differing halfwords and 285 aligned wrong instructions; + no bytes adopted. Calls were bound from reference sites, not candidate + offsets. Repair the lifter before repeating this scene family: a fresh + `psynergy decompile` duplicates actor lookups, appends two spurious calls + after the event-end call, and introduces `volatile` on ordinary actor RAM + (`tools/psynergy/src/lift.rs` byte-mask emission). The private candidate + removes those errors. Its first remaining mismatch is constant 257 loaded + from a pool versus `mov 2; add 255`; the existing compiler synthesizes such + constants during reload, so equivalent constant spellings are not a new + search axis. Compiler, flags and credit remain unchanged. + ### Alchemy builds, Psynergy reads The law in [TOOLING](.agents/TOOLING.md). Psynergy still holds operations that diff --git a/games/THE LOST AGE/semantic/regions.json b/games/THE LOST AGE/semantic/regions.json index 5e72046411..b2695014a8 100644 --- a/games/THE LOST AGE/semantic/regions.json +++ b/games/THE LOST AGE/semantic/regions.json @@ -1,6 +1,12 @@ { "format": 1, "manual_regions": [ + { + "overlay": "resource_64d", + "entry": "0x02000510", + "span_bytes": 5404, + "evidence": "Reviewed in the canonical tla-en loaded overlay: entry 0x02008510 saves r5-r11 and lr; its control flow returns at 0x02009a26, the final referenced 0x00013333 literal occupies 0x02009a28-0x02009a2b, and the next independent owner begins with push {r5, lr} at 0x02009a2c. Resource coordinates subtract the loader's 0x8000 offset. This boundary review grants no C or retained-assembly credit." + }, { "overlay": "resource_64e", "entry": "0x02000038", diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 71d47b8a99..468695b50f 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -1,6 +1,9 @@ { "format": 3, "owners": { + "resource_64d:020026f4": {"name": "Scene_CreateSpriteField"}, + "main:080dc244": {"name": "Field_BeginPaletteTransition"}, + "resource_64d:02000510": {"name": "Scene_PlayApproachEvent"}, "main:08016d5c": { "name": "GameFlag_GetByte", "source": "GAME/FLAGS/GET_BYTE.C" From 96d439a658a63583fbc5f2ae9d333b0504775918 Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 12:40:07 +0100 Subject: [PATCH 3/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=2038=20exact=20TLA=20field-s?= =?UTF-8?q?cript=20operands?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wire FIELD/COMMON/SCRIPT/OPERANDS.C as tla-script-operands (+1,820 B → 0.27%). Three 2-halfword scheduling floors stay parked and uncredited. --- README.md | 4 +- TODO.md | 16 +- games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4318 +++++++++-------- games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H | 76 + .../SRC/FIELD/COMMON/SCRIPT/OPERANDS.C | 793 +++ .../THE LOST AGE/recon/translation-units.json | 821 +++- games/THE LOST AGE/source-paths.json | 127 +- 7 files changed, 3957 insertions(+), 2198 deletions(-) create mode 100644 games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS.C diff --git a/README.md b/README.md index a8f6086060..f1440a88fc 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ In Golden Sun, lighting the four Elemental Lighthouses releases Alchemy upon the The two games share much of the same code, so Alchemy recovers them side by side. -## Status: ☀️ 55.96% · ⚓️ 0.20% +## Status: ☀️ 55.96% · ⚓️ 0.27% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/TODO.md b/TODO.md index 8587401171..281d5414ca 100644 --- a/TODO.md +++ b/TODO.md @@ -30,17 +30,11 @@ and 1,043,350 across all 114 overlays. Grow verified source coverage against that fixed inventory; its denominator is not a claim of a complete TLA build. Credit only ranges meeting [COMPLETION](.agents/COMPLETION.md). -- Close the field-script operand module at `08025b58–08026320` using TBS's - `FIELD/COMMON/SCRIPT/OPERANDS.C`. A bounded cross-game probe reproduced - 38 complete functions (1,820 bytes); three 2-halfword scheduling differences - remain at `08025bb4` (46 bytes), `08025c5c` (46), and `08025f9c` (52). - The three dispatchers bind their handler table to `0802f2dc`, independently - read from their reference literal pools. Five ordinary source hypotheses - did not close the scheduling differences; do not repeat them or change - compiler flags. Swapped comparison operands, explicit loaded temporaries, - direct Boolean assignment, in-place input narrowing, and switch dispatch - were tested. Candidate and results are under `out/field-operands-*`. - Nothing from this probe is adopted or credited yet. +- Field-script operands at `08025b58–08026320`: 38 exact owners (1,820 bytes) + adopted as `tla-script-operands` from `FIELD/COMMON/SCRIPT/OPERANDS.C`. + Three 2-halfword scheduling floors remain uncredited at `08025bb4` (46), + `08025c5c` (46), and `08025f9c` (52); do not repeat the five parked source + hypotheses or change compiler flags. They stay in the C for layout only. - Venus approach event `resource_64d:02000510` has a reviewed 5,404-byte extent. Its loaded reference ends at `02009a2c`, including the last literal. The diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index 5e7a04d524..db2db6fd93 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,7915 +26342,8079 @@ THE LOST AGE - -SRC: 14,192,586 bytes · C, Data · 6 items - - - + +SRC: 14,194,406 bytes · C, Data · 6 items + + + SRC BATTLE: 84 bytes · C · 1 items - - - + + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + - -FIELD: 710,796 bytes · Data · 8 items - - - -FIELD - -COMMON: 9,824 bytes · Data · 6 items - - - + +FIELD: 712,616 bytes · C, Data · 8 items + + + +FIELD + +COMMON: 11,644 bytes · C, Data · 7 items + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + + + +SCRIPT: 1,820 bytes · C · 1 items + + + + +OPERANDS.C: 1,820 bytes · C · 38 items + + + + +OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 + + + +OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 + + + +OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 + + + +OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c + + + +OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 + + + +OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c + + + +OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 + + + +OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc + + + +OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 + + + +OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c + + + +OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 + + + +OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c + + + +OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 + + + +OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc + + + +OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 + + + +OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c + + + +OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 + + + +OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c + + + +OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 + + + +OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc + + + +OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 + + + +OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 + + + +OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 + + + +OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 + + + +OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c + + + +OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 + + + +OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 + + + +OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 + + + +OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc + + + +OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 + + + +OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 + + + +OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 + + + +OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 + + + +OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 + + + +OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c + + + +OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 + + + +OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 + + + +OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 + + + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + GAME: 60 bytes · C · 1 items - - - + + + FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + + + +GRAPHICS CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,275,858 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,530,948 bytes · Assembly - -main.s + +raw: 2,274,038 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,529,128 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H b/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H new file mode 100644 index 0000000000..ac3272ae4c --- /dev/null +++ b/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H @@ -0,0 +1,76 @@ +#ifndef ALCHEMY_SCRIPT_OPERANDS_H +#define ALCHEMY_SCRIPT_OPERANDS_H + +#include "TYPES.H" + +/* Script operand work. Mixed widths stay as placed in the image. */ +struct ScriptOperands { + u32 script_address; /* 0x00 */ + u16 cursor; /* 0x04; cast to s16 for signed interpretation */ + u16 unsigned_halfword; /* 0x06 */ + u32 word_08; + u32 word_0c; + u32 word_10; + u32 word_14; + u32 word_18; + u32 word_1c; + u16 halfword_20; + u8 padding_22[2]; + u32 word_24; + u32 word_28; + u32 word_2c; + u32 word_30; + u32 word_34; + u32 word_38; + u32 word_3c; + u32 word_40; + u32 word_44; + u32 word_48; + u32 word_4c; + u32 address_50; + u8 byte_54; + u8 byte_55; + u8 byte_56; + u8 comparison_result; + u8 byte_58; + u8 byte_59; + u8 byte_5a; + u8 byte_5b; + u8 byte_5c; + u8 byte_5d; + u16 halfword_5e; + u8 byte_60; + u8 byte_61; + u8 byte_62; + u8 byte_63; + s16 signed_halfword_64; + s16 signed_halfword_66; + u32 word_68; + u32 word_6c; +}; + +#define SCRIPT_OPERANDS_OFFSET(field) \ + ((u32)&(((struct ScriptOperands *)0)->field)) + +typedef char ScriptOperands_comparison_result_offset[ + SCRIPT_OPERANDS_OFFSET(comparison_result) == 0x57 ? 1 : -1 +]; +typedef char ScriptOperands_halfword_5e_offset[ + SCRIPT_OPERANDS_OFFSET(halfword_5e) == 0x5e ? 1 : -1 +]; +typedef char ScriptOperands_signed_halfword_64_offset[ + SCRIPT_OPERANDS_OFFSET(signed_halfword_64) == 0x64 ? 1 : -1 +]; +typedef char ScriptOperands_word_68_offset[ + SCRIPT_OPERANDS_OFFSET(word_68) == 0x68 ? 1 : -1 +]; +typedef char ScriptOperands_word_6c_offset[ + SCRIPT_OPERANDS_OFFSET(word_6c) == 0x6c ? 1 : -1 +]; +typedef char ScriptOperands_size[ + sizeof(struct ScriptOperands) == 0x70 ? 1 : -1 +]; + +#undef SCRIPT_OPERANDS_OFFSET + +#endif diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS.C b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS.C new file mode 100644 index 0000000000..d332780b4a --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS.C @@ -0,0 +1,793 @@ +#ifndef ALCHEMY_SCRIPT_OPERANDS_H +#define ALCHEMY_SCRIPT_OPERANDS_H + +#include "TYPES.H" + +/* Script operand work. Mixed widths stay as placed in the image. */ +struct ScriptOperands { + u32 script_address; /* 0x00 */ + u16 cursor; /* 0x04; cast to s16 for signed interpretation */ + u16 unsigned_halfword; /* 0x06 */ + u32 word_08; + u32 word_0c; + u32 word_10; + u32 word_14; + u32 word_18; + u32 word_1c; + u16 halfword_20; + u8 padding_22[2]; + u32 word_24; + u32 word_28; + u32 word_2c; + u32 word_30; + u32 word_34; + u32 word_38; + u32 word_3c; + u32 word_40; + u32 word_44; + u32 word_48; + u32 word_4c; + u32 address_50; + u8 byte_54; + u8 byte_55; + u8 byte_56; + u8 comparison_result; + u8 byte_58; + u8 byte_59; + u8 byte_5a; + u8 byte_5b; + u8 byte_5c; + u8 byte_5d; + u16 halfword_5e; + u8 byte_60; + u8 byte_61; + u8 byte_62; + u8 byte_63; + s16 signed_halfword_64; + s16 signed_halfword_66; + u32 word_68; + u32 word_6c; +}; + +#define SCRIPT_OPERANDS_OFFSET(field) \ + ((u32)&(((struct ScriptOperands *)0)->field)) + +typedef char ScriptOperands_comparison_result_offset[ + SCRIPT_OPERANDS_OFFSET(comparison_result) == 0x57 ? 1 : -1 +]; +typedef char ScriptOperands_halfword_5e_offset[ + SCRIPT_OPERANDS_OFFSET(halfword_5e) == 0x5e ? 1 : -1 +]; +typedef char ScriptOperands_signed_halfword_64_offset[ + SCRIPT_OPERANDS_OFFSET(signed_halfword_64) == 0x64 ? 1 : -1 +]; +typedef char ScriptOperands_word_68_offset[ + SCRIPT_OPERANDS_OFFSET(word_68) == 0x68 ? 1 : -1 +]; +typedef char ScriptOperands_word_6c_offset[ + SCRIPT_OPERANDS_OFFSET(word_6c) == 0x6c ? 1 : -1 +]; +typedef char ScriptOperands_size[ + sizeof(struct ScriptOperands) == 0x70 ? 1 : -1 +]; + +#undef SCRIPT_OPERANDS_OFFSET + +#endif + + + +typedef void (*OperandFunc)(struct ScriptOperands *, s32, s32); +extern OperandFunc Data_0802f2dc[]; + +void Script_SetOrCompareAddress(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->script_address = value; + return; + } + if (operation == 1) { + state->script_address += (u32)value * 4; + return; + } + result = 0; + if (state->script_address == (u32)value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareCursor(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + state->cursor = value; + } else if (operation == 1) { + state->cursor = + (u16)((u32)(s32)(s16)state->cursor + (u32)value); + } else { + result = 0; + if ((s16)state->cursor == (s16)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareUnsignedHalfword(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + state->unsigned_halfword = value; + } else if (operation == 1) { + state->unsigned_halfword = + (u16)((u32)state->unsigned_halfword + (u32)value); + } else { + result = 0; + if (state->unsigned_halfword == (u16)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareWord08(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_08 = value; + return; + } + if (operation == 1) { + state->word_08 += value; + return; + } + result = 0; + if (state->word_08 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord0c(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_0c = value; + return; + } + if (operation == 1) { + state->word_0c += value; + return; + } + result = 0; + if (state->word_0c == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord10(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_10 = value; + return; + } + if (operation == 1) { + state->word_10 += value; + return; + } + result = 0; + if (state->word_10 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareHalfword20(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + if (operation == 0) + { + state->halfword_20 = value; + return; + } + if (operation == 1) + { + state->halfword_20 = (u16)((u32)state->halfword_20 + (u32)value); + return; + } + result = 0; + if (state->halfword_20 == (s16)value) + { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord18(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_18 = value; + return; + } + if (operation == 1) { + state->word_18 += value; + return; + } + result = 0; + if (state->word_18 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord1c(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_1c = value; + return; + } + if (operation == 1) { + state->word_1c += value; + return; + } + result = 0; + if (state->word_1c == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord24(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_24 = value; + return; + } + if (operation == 1) { + state->word_24 += value; + return; + } + result = 0; + if (state->word_24 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord28(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_28 = value; + return; + } + if (operation == 1) { + state->word_28 += value; + return; + } + result = 0; + if (state->word_28 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord2c(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_2c = value; + return; + } + if (operation == 1) { + state->word_2c += value; + return; + } + result = 0; + if (state->word_2c == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord30(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_30 = value; + return; + } + if (operation == 1) { + state->word_30 += value; + return; + } + result = 0; + if (state->word_30 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord34(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_34 = value; + return; + } + if (operation == 1) { + state->word_34 += value; + return; + } + result = 0; + if (state->word_34 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord38(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_38 = value; + return; + } + if (operation == 1) { + state->word_38 += value; + return; + } + result = 0; + if (state->word_38 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord3c(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_3c = value; + return; + } + if (operation == 1) { + state->word_3c += value; + return; + } + result = 0; + if (state->word_3c == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord40(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_40 = value; + return; + } + if (operation == 1) { + state->word_40 += value; + return; + } + result = 0; + if (state->word_40 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord44(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_44 = value; + return; + } + if (operation == 1) { + state->word_44 += value; + return; + } + result = 0; + if (state->word_44 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord48(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_48 = value; + return; + } + if (operation == 1) { + state->word_48 += value; + return; + } + result = 0; + if (state->word_48 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord14(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_14 = value; + return; + } + if (operation == 1) { + state->word_14 += value; + return; + } + result = 0; + if (state->word_14 == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareWord4c(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->word_4c = value; + return; + } + if (operation == 1) { + state->word_4c += value; + return; + } + result = 0; + if (state->word_4c == value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareAddress50(struct ScriptOperands *state, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + state->address_50 = value; + return; + } + if (operation == 1) { + state->address_50 += (u32)value * 4; + return; + } + result = 0; + if (state->address_50 == (u32)value) { + result = 1; + } + state->comparison_result = result; +} + +void Script_SetOrCompareByte54(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + state->byte_54 = value; + } else if (operation == 1) { + state->byte_54 = (u8)((u32)state->byte_54 + (u32)value); + } else { + result = 0; + if (state->byte_54 == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte55(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_55 = value; + } else if (operation == 1) { + state->byte_55 = (u8)((u32)state->byte_55 + (u32)value); + } else { + result = 0; + if (state->byte_55 == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte56(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_56 = value; + } else if (operation == 1) { + state->byte_56 = (u8)((u32)state->byte_56 + (u32)value); + } else { + result = 0; + if (state->byte_56 == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareComparisonResult(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + state->comparison_result = value; + } else if (operation == 1) { + state->comparison_result = + (u8)((u32)state->comparison_result + (u32)value); + } else { + result = 0; + if (state->comparison_result == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte58(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_58 = value; + } else if (operation == 1) { + state->byte_58 = (u8)((u32)state->byte_58 + (u32)value); + } else { + result = 0; + if (state->byte_58 == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte59(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_59 = value; + } else if (operation == 1) { + state->byte_59 = (u8)((u32)state->byte_59 + (u32)value); + } else { + result = 0; + if (state->byte_59 == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte5a(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_5a = value; + } else if (operation == 1) { + state->byte_5a = (u8)((u32)state->byte_5a + (u32)value); + } else { + result = 0; + if (state->byte_5a == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte5b(struct ScriptOperands *state, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + state->byte_5b = value; + } else if (operation == 1) { + state->byte_5b = (u8)((u32)state->byte_5b + (u32)value); + } else { + result = 0; + if (state->byte_5b == (u8)value) + result = 1; + state->comparison_result = result; + } +} + +void Script_SetOrCompareByte5d(struct ScriptOperands *work, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + work->byte_5d = value; + } else if (operation == 1) { + work->byte_5d += value; + } else { + result = 0; + if (work->byte_5d == (u8)value) + result = 1; + work->comparison_result = result; + } +} + +void Script_SetOrCompareHalfword5e(struct ScriptOperands *work, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + work->halfword_5e = value; + return; + } + if (operation == 1) { + work->halfword_5e = work->halfword_5e + value; + return; + } + result = 0; + if ((s16)work->halfword_5e == (s16)value) { + result = 1; + } + work->comparison_result = result; +} + +void Script_SetOrCompareSignedHalfword64(struct ScriptOperands *work, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + work->signed_halfword_64 = value; + } else if (operation == 1) { + work->signed_halfword_64 = + (u16)work->signed_halfword_64 + value; + } else { + result = 0; + if (work->signed_halfword_64 == (s16)value) + result = 1; + work->comparison_result = result; + } +} + +void Script_SetOrCompareSignedHalfword66(struct ScriptOperands *work, s32 operation, s32 value) +{ + s32 result; + + if (operation == 0) { + work->signed_halfword_66 = value; + } else if (operation == 1) { + work->signed_halfword_66 = + (u16)work->signed_halfword_66 + value; + } else { + result = 0; + if (work->signed_halfword_66 == (s16)value) + result = 1; + work->comparison_result = result; + } +} + +void Script_SetOrCompareWord68(struct ScriptOperands *work, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + work->word_68 = value; + return; + } + if (operation == 1) { + work->word_68 = work->word_68 + (u32)value; + return; + } + result = 0; + if (work->word_68 == (u32)value) { + result = 1; + } + work->comparison_result = result; +} + +void Script_SetOrCompareWord6c(struct ScriptOperands *work, s32 operation, s32 value) +{ + s8 result; + + if (operation == 0) { + work->word_6c = value; + return; + } + if (operation == 1) { + work->word_6c = work->word_6c + (u32)value; + return; + } + result = 0; + if (work->word_6c == (u32)value) { + result = 1; + } + work->comparison_result = result; +} + +void Script_SetOrCompareByte62(struct ScriptOperands *work, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + work->byte_62 = value; + } else if (operation == 1) { + work->byte_62 += value; + } else { + result = 0; + if (work->byte_62 == (u8)value) + result = 1; + work->comparison_result = result; + } +} + +void Script_SetOrCompareByte63(struct ScriptOperands *work, s32 operation, s32 value) +{ + s32 result; + if (operation == 0) { + work->byte_63 = value; + } else if (operation == 1) { + work->byte_63 += value; + } else { + result = 0; + if (work->byte_63 == (u8)value) + result = 1; + work->comparison_result = result; + } +} + +s32 Script_ApplyOperandSet(struct ScriptOperands *work) +{ + s16 index = (s16)work->cursor; + u8 *entry = (u8 *)(work->script_address + index * 4 + 4); + OperandFunc callback = Data_0802f2dc[*(s32 *)entry]; + + if (callback != 0) + callback(work, 0, *(s32 *)(entry + 4)); + work->cursor += 3; + return 1; +} + +s32 Script_ApplyOperandAdd(struct ScriptOperands *work) +{ + s16 index = (s16)work->cursor; + u8 *entry = (u8 *)(work->script_address + index * 4 + 4); + OperandFunc callback = Data_0802f2dc[*(s32 *)entry]; + + if (callback != 0) + callback(work, 1, *(s32 *)(entry + 4)); + work->cursor += 3; + return 1; +} + +s32 Script_ApplyOperandCompare(struct ScriptOperands *work) +{ + s16 index = (s16)work->cursor; + u8 *entry = (u8 *)(work->script_address + index * 4 + 4); + OperandFunc callback = Data_0802f2dc[*(s32 *)entry]; + + if (callback != 0) + callback(work, 2, *(s32 *)(entry + 4)); + work->cursor += 3; + return 1; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index 223c124307..eb75994999 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -10,7 +10,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c2640", "extent": 60, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2640", + "extent": 60, + "state": "exact-c" + } + ], "overlay": null }, { @@ -20,7 +26,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c28e0", "extent": 180, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c28e0", + "extent": 180, + "state": "exact-c" + } + ], "overlay": null }, { @@ -30,7 +42,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c2a3c", "extent": 80, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2a3c", + "extent": 80, + "state": "exact-c" + } + ], "overlay": null }, { @@ -40,7 +58,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c2a8c", "extent": 104, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2a8c", + "extent": 104, + "state": "exact-c" + } + ], "overlay": null }, { @@ -50,7 +74,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c2f68", "extent": 104, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2f68", + "extent": 104, + "state": "exact-c" + } + ], "overlay": null }, { @@ -60,7 +90,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c2fd0", "extent": 116, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2fd0", + "extent": 116, + "state": "exact-c" + } + ], "overlay": null }, { @@ -70,7 +106,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c3044", "extent": 104, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c3044", + "extent": 104, + "state": "exact-c" + } + ], "overlay": null }, { @@ -80,7 +122,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c3340", "extent": 72, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c3340", + "extent": 72, + "state": "exact-c" + } + ], "overlay": null }, { @@ -91,7 +139,11 @@ "absolute_symbols": {}, "local_symbols": [], "owners": [ - {"address": "0x080132cc", "extent": 4, "state": "exact-c"} + { + "address": "0x080132cc", + "extent": 4, + "state": "exact-c" + } ], "overlay": null }, @@ -101,11 +153,18 @@ "source": "games/THE LOST AGE/SRC/GAME/FLAGS/GET_BYTE.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "GameFlagBytes": {"address": "0x02000040", "kind": "data"} + "GameFlagBytes": { + "address": "0x02000040", + "kind": "data" + } }, "local_symbols": [], "owners": [ - {"address": "0x08016d5c", "extent": 16, "state": "exact-c"} + { + "address": "0x08016d5c", + "extent": 16, + "state": "exact-c" + } ], "overlay": null }, @@ -114,9 +173,20 @@ "game": "tla", "source": "games/THE LOST AGE/SRC/GAME/FLAGS/SET_BYTE.C", "compiler_route": "canonical-gcc296", - "absolute_symbols": {"GameFlagBytes": {"address": "0x02000040", "kind": "data"}}, + "absolute_symbols": { + "GameFlagBytes": { + "address": "0x02000040", + "kind": "data" + } + }, "local_symbols": [], - "owners": [{"address": "0x08016d6c", "extent": 16, "state": "exact-c"}], + "owners": [ + { + "address": "0x08016d6c", + "extent": 16, + "state": "exact-c" + } + ], "overlay": null }, { @@ -124,9 +194,20 @@ "game": "tla", "source": "games/THE LOST AGE/SRC/GAME/FLAGS/GET_NIBBLE.C", "compiler_route": "canonical-gcc296", - "absolute_symbols": {"GameFlagBytes": {"address": "0x02000040", "kind": "data"}}, + "absolute_symbols": { + "GameFlagBytes": { + "address": "0x02000040", + "kind": "data" + } + }, "local_symbols": [], - "owners": [{"address": "0x08016db4", "extent": 28, "state": "exact-c"}], + "owners": [ + { + "address": "0x08016db4", + "extent": 28, + "state": "exact-c" + } + ], "overlay": null }, { @@ -137,7 +218,11 @@ "absolute_symbols": {}, "local_symbols": [], "owners": [ - {"address": "0x080caf70", "extent": 84, "state": "exact-c"} + { + "address": "0x080caf70", + "extent": 84, + "state": "exact-c" + } ], "overlay": null }, @@ -147,14 +232,31 @@ "source": "games/COMMON/SRC/SOUND/PCM_KEY_TO_FREQUENCY.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "Audio_UmulHigh32": {"address": "0x081c127c", "kind": "thumb"}, - "Sound_PcmFrequencySteps": {"address": "0x081c3580", "kind": "data"}, - "Sound_PcmPitchCodes": {"address": "0x081c34cc", "kind": "data"} + "Audio_UmulHigh32": { + "address": "0x081c127c", + "kind": "thumb" + }, + "Sound_PcmFrequencySteps": { + "address": "0x081c3580", + "kind": "data" + }, + "Sound_PcmPitchCodes": { + "address": "0x081c34cc", + "kind": "data" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c1e98", "extent": 100, "state": "exact-c"}, - {"address": "0x081c1efc", "extent": 2, "state": "exact-c"} + { + "address": "0x081c1e98", + "extent": 100, + "state": "exact-c" + }, + { + "address": "0x081c1efc", + "extent": 2, + "state": "exact-c" + } ], "overlay": null }, @@ -164,12 +266,22 @@ "source": "games/COMMON/SRC/SOUND/MUSIC_TRACK_DISPATCH_STREAM_COMMAND.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "Runtime_InvokeWorkEntryWithArgs": {"address": "0x08017880", "kind": "thumb"}, - "Sound_ExtendedCommandTable": {"address": "0x081c36e4", "kind": "data"} + "Runtime_InvokeWorkEntryWithArgs": { + "address": "0x08017880", + "kind": "thumb" + }, + "Sound_ExtendedCommandTable": { + "address": "0x081c36e4", + "kind": "data" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c330c", "extent": 32, "state": "exact-c"} + { + "address": "0x081c330c", + "extent": 32, + "state": "exact-c" + } ], "overlay": null }, @@ -179,25 +291,74 @@ "source": "games/COMMON/SRC/SOUND/INITIALIZE_CGB.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "AudioEngine_SetPcmRate": {"address": "0x081c2434", "kind": "thumb"}, - "Bios_CpuSet": {"address": "0x08016df8", "kind": "thumb"}, - "CgbAudio_Update": {"address": "0x081c2af4", "kind": "thumb"}, - "CgbChannel_Mute": {"address": "0x081c2a3c", "kind": "thumb"}, - "Cgb_KeyToFrequency": {"address": "0x081c2994", "kind": "thumb"}, - "MusicPlayer_StepFade": {"address": "0x081c2818", "kind": "thumb"}, - "MusicTrack_CalcOutput": {"address": "0x081c28e0", "kind": "thumb"}, - "MusicTrack_DispatchStreamCommand": {"address": "0x081c330c", "kind": "thumb"}, - "MusicTrack_OperateWorkByte": {"address": "0x081c31b4", "kind": "thumb"}, - "MusicTrack_ReleaseKey": {"address": "0x081c1e08", "kind": "thumb"}, - "MusicTrack_SetLfoSpeedFromCommand": {"address": "0x081c1e70", "kind": "thumb"}, - "MusicTrack_SetModulationFromCommand": {"address": "0x081c1e84", "kind": "thumb"}, - "MusicTrack_Stop": {"address": "0x081c1b94", "kind": "thumb"}, - "Sound_CommandTable": {"address": "0x02006800", "kind": "data"}, - "Value_00000000": {"address": "0x00000000", "kind": "data"} + "AudioEngine_SetPcmRate": { + "address": "0x081c2434", + "kind": "thumb" + }, + "Bios_CpuSet": { + "address": "0x08016df8", + "kind": "thumb" + }, + "CgbAudio_Update": { + "address": "0x081c2af4", + "kind": "thumb" + }, + "CgbChannel_Mute": { + "address": "0x081c2a3c", + "kind": "thumb" + }, + "Cgb_KeyToFrequency": { + "address": "0x081c2994", + "kind": "thumb" + }, + "MusicPlayer_StepFade": { + "address": "0x081c2818", + "kind": "thumb" + }, + "MusicTrack_CalcOutput": { + "address": "0x081c28e0", + "kind": "thumb" + }, + "MusicTrack_DispatchStreamCommand": { + "address": "0x081c330c", + "kind": "thumb" + }, + "MusicTrack_OperateWorkByte": { + "address": "0x081c31b4", + "kind": "thumb" + }, + "MusicTrack_ReleaseKey": { + "address": "0x081c1e08", + "kind": "thumb" + }, + "MusicTrack_SetLfoSpeedFromCommand": { + "address": "0x081c1e70", + "kind": "thumb" + }, + "MusicTrack_SetModulationFromCommand": { + "address": "0x081c1e84", + "kind": "thumb" + }, + "MusicTrack_Stop": { + "address": "0x081c1b94", + "kind": "thumb" + }, + "Sound_CommandTable": { + "address": "0x02006800", + "kind": "data" + }, + "Value_00000000": { + "address": "0x00000000", + "kind": "data" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c21f8", "extent": 280, "state": "exact-c"} + { + "address": "0x081c21f8", + "extent": 280, + "state": "exact-c" + } ], "overlay": null }, @@ -207,37 +368,132 @@ "source": "games/COMMON/SRC/SOUND/SOUND.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "AudioEngine_Initialize": {"address": "0x081c233c", "kind": "thumb"}, - "AudioEngine_RunMixerTick": {"address": "0x081c128c", "kind": "thumb"}, - "AudioEngine_SetMode": {"address": "0x081c24d8", "kind": "thumb"}, - "Audio_ResumePlayer": {"address": "0x081c1f00", "kind": "thumb"}, - "Bios_CpuSet": {"address": "0x08016df8", "kind": "thumb"}, - "CgbAudio_Initialize": {"address": "0x081c21f8", "kind": "thumb"}, - "MusicPlayer_BeginFadeOut": {"address": "0x081c1f1c", "kind": "thumb"}, - "MusicPlayer_Initialize": {"address": "0x081c267c", "kind": "thumb"}, - "MusicPlayer_StartSong": {"address": "0x081c26f4", "kind": "thumb"}, - "MusicPlayer_Stop": {"address": "0x081c27d8", "kind": "thumb"}, - "Sound_CgbNotes": {"address": "0x02006890", "kind": "data"}, - "Sound_Mixer": {"address": "0x081c1310", "kind": "thumb"}, - "Sound_PlayerCount": {"address": "0x00000008", "kind": "data"}, - "Sound_PlayerSlots": {"address": "0x081c44d0", "kind": "data"}, - "Sound_SongTable": {"address": "0x081c4530", "kind": "data"}, - "Sound_Work": {"address": "0x02005850", "kind": "data"}, - "Sound_WorkBytes": {"address": "0x02006b50", "kind": "data"} + "AudioEngine_Initialize": { + "address": "0x081c233c", + "kind": "thumb" + }, + "AudioEngine_RunMixerTick": { + "address": "0x081c128c", + "kind": "thumb" + }, + "AudioEngine_SetMode": { + "address": "0x081c24d8", + "kind": "thumb" + }, + "Audio_ResumePlayer": { + "address": "0x081c1f00", + "kind": "thumb" + }, + "Bios_CpuSet": { + "address": "0x08016df8", + "kind": "thumb" + }, + "CgbAudio_Initialize": { + "address": "0x081c21f8", + "kind": "thumb" + }, + "MusicPlayer_BeginFadeOut": { + "address": "0x081c1f1c", + "kind": "thumb" + }, + "MusicPlayer_Initialize": { + "address": "0x081c267c", + "kind": "thumb" + }, + "MusicPlayer_StartSong": { + "address": "0x081c26f4", + "kind": "thumb" + }, + "MusicPlayer_Stop": { + "address": "0x081c27d8", + "kind": "thumb" + }, + "Sound_CgbNotes": { + "address": "0x02006890", + "kind": "data" + }, + "Sound_Mixer": { + "address": "0x081c1310", + "kind": "thumb" + }, + "Sound_PlayerCount": { + "address": "0x00000008", + "kind": "data" + }, + "Sound_PlayerSlots": { + "address": "0x081c44d0", + "kind": "data" + }, + "Sound_SongTable": { + "address": "0x081c4530", + "kind": "data" + }, + "Sound_Work": { + "address": "0x02005850", + "kind": "data" + }, + "Sound_WorkBytes": { + "address": "0x02006b50", + "kind": "data" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c1f3c", "extent": 120, "state": "exact-c"}, - {"address": "0x081c1fb4", "extent": 10, "state": "exact-c"}, - {"address": "0x081c1fc0", "extent": 44, "state": "exact-c"}, - {"address": "0x081c1fec", "extent": 76, "state": "exact-c"}, - {"address": "0x081c2038", "extent": 84, "state": "exact-c"}, - {"address": "0x081c208c", "extent": 52, "state": "exact-c"}, - {"address": "0x081c20c0", "extent": 52, "state": "exact-c"}, - {"address": "0x081c20f4", "extent": 44, "state": "exact-c"}, - {"address": "0x081c2120", "extent": 10, "state": "exact-c"}, - {"address": "0x081c212c", "extent": 44, "state": "exact-c"}, - {"address": "0x081c2158", "extent": 14, "state": "exact-c"} + { + "address": "0x081c1f3c", + "extent": 120, + "state": "exact-c" + }, + { + "address": "0x081c1fb4", + "extent": 10, + "state": "exact-c" + }, + { + "address": "0x081c1fc0", + "extent": 44, + "state": "exact-c" + }, + { + "address": "0x081c1fec", + "extent": 76, + "state": "exact-c" + }, + { + "address": "0x081c2038", + "extent": 84, + "state": "exact-c" + }, + { + "address": "0x081c208c", + "extent": 52, + "state": "exact-c" + }, + { + "address": "0x081c20c0", + "extent": 52, + "state": "exact-c" + }, + { + "address": "0x081c20f4", + "extent": 44, + "state": "exact-c" + }, + { + "address": "0x081c2120", + "extent": 10, + "state": "exact-c" + }, + { + "address": "0x081c212c", + "extent": 44, + "state": "exact-c" + }, + { + "address": "0x081c2158", + "extent": 14, + "state": "exact-c" + } ], "overlay": null }, @@ -247,23 +503,70 @@ "source": "games/COMMON/SRC/SOUND/ENGINE_INITIALIZE.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "AudioEngine_ResumeDirectSound": {"address": "0x081c2640", "kind": "thumb"}, - "Audio_EmptyCallback": {"address": "0x081c342c", "kind": "thumb"}, - "Bios_CpuSet": {"address": "0x08016df8", "kind": "thumb"}, - "Math_Div": {"address": "0x08002054", "kind": "thumb"}, - "MusicTrack_HandleNote": {"address": "0x081c07a2", "kind": "thumb"}, - "Sound_CommandTable": {"address": "0x02006800", "kind": "data"}, - "Sound_FrameLengths": {"address": "0x081c35b0", "kind": "data"}, - "Sound_LoadCommandTable": {"address": "0x081c171c", "kind": "thumb"} - ,"_call_via_r1": {"address": "0x0801787c", "kind": "thumb"} + "AudioEngine_ResumeDirectSound": { + "address": "0x081c2640", + "kind": "thumb" + }, + "Audio_EmptyCallback": { + "address": "0x081c342c", + "kind": "thumb" + }, + "Bios_CpuSet": { + "address": "0x08016df8", + "kind": "thumb" + }, + "Math_Div": { + "address": "0x08002054", + "kind": "thumb" + }, + "MusicTrack_HandleNote": { + "address": "0x081c07a2", + "kind": "thumb" + }, + "Sound_CommandTable": { + "address": "0x02006800", + "kind": "data" + }, + "Sound_FrameLengths": { + "address": "0x081c35b0", + "kind": "data" + }, + "Sound_LoadCommandTable": { + "address": "0x081c171c", + "kind": "thumb" + }, + "_call_via_r1": { + "address": "0x0801787c", + "kind": "thumb" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c233c", "extent": 248, "state": "exact-c"}, - {"address": "0x081c2434", "extent": 164, "state": "exact-c"}, - {"address": "0x081c24d8", "extent": 152, "state": "exact-c"}, - {"address": "0x081c2570", "extent": 84, "state": "exact-c"}, - {"address": "0x081c25c4", "extent": 124, "state": "exact-c"} + { + "address": "0x081c233c", + "extent": 248, + "state": "exact-c" + }, + { + "address": "0x081c2434", + "extent": 164, + "state": "exact-c" + }, + { + "address": "0x081c24d8", + "extent": 152, + "state": "exact-c" + }, + { + "address": "0x081c2570", + "extent": 84, + "state": "exact-c" + }, + { + "address": "0x081c25c4", + "extent": 124, + "state": "exact-c" + } ], "overlay": null }, @@ -273,16 +576,40 @@ "source": "games/COMMON/SRC/SOUND/MUSIC_PLAYER.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "AudioCommand_InvokeSlot35": {"address": "0x081c2328", "kind": "thumb"}, - "MusicPlayer_Tick": {"address": "0x081c09d0", "kind": "thumb"}, - "MusicTrack_Stop": {"address": "0x081c1b94", "kind": "thumb"}, - "AudioEngine_SetMode": {"address": "0x081c24d8", "kind": "thumb"} + "AudioCommand_InvokeSlot35": { + "address": "0x081c2328", + "kind": "thumb" + }, + "MusicPlayer_Tick": { + "address": "0x081c09d0", + "kind": "thumb" + }, + "MusicTrack_Stop": { + "address": "0x081c1b94", + "kind": "thumb" + }, + "AudioEngine_SetMode": { + "address": "0x081c24d8", + "kind": "thumb" + } }, "local_symbols": [], "owners": [ - {"address": "0x081c267c", "extent": 120, "state": "exact-c"}, - {"address": "0x081c26f4", "extent": 228, "state": "exact-c"}, - {"address": "0x081c27d8", "extent": 64, "state": "exact-c"} + { + "address": "0x081c267c", + "extent": 120, + "state": "exact-c" + }, + { + "address": "0x081c26f4", + "extent": 228, + "state": "exact-c" + }, + { + "address": "0x081c27d8", + "extent": 64, + "state": "exact-c" + } ], "overlay": null }, @@ -292,10 +619,19 @@ "source": "games/COMMON/SRC/SOUND/MUSIC_PLAYER_STEP_FADE.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "MusicTrack_Stop": {"address": "0x081c1b94", "kind": "thumb"} + "MusicTrack_Stop": { + "address": "0x081c1b94", + "kind": "thumb" + } }, "local_symbols": [], - "owners": [{"address": "0x081c2818", "extent": 200, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2818", + "extent": 200, + "state": "exact-c" + } + ], "overlay": null }, { @@ -304,12 +640,27 @@ "source": "games/COMMON/SRC/SOUND/CGB_KEY_TO_FREQUENCY.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "Sound_CgbPitchCodes": {"address": "0x081c35c8", "kind": "data"}, - "Sound_CgbFrequencySteps": {"address": "0x081c364c", "kind": "data"}, - "Sound_NoisePitchCodes": {"address": "0x081c3664", "kind": "data"} + "Sound_CgbPitchCodes": { + "address": "0x081c35c8", + "kind": "data" + }, + "Sound_CgbFrequencySteps": { + "address": "0x081c364c", + "kind": "data" + }, + "Sound_NoisePitchCodes": { + "address": "0x081c3664", + "kind": "data" + } }, "local_symbols": [], - "owners": [{"address": "0x081c2994", "extent": 168, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c2994", + "extent": 168, + "state": "exact-c" + } + ], "overlay": null }, { @@ -318,10 +669,19 @@ "source": "games/COMMON/SRC/SOUND/MUSIC_PLAYER_SET_MODULATION_DEPTH.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "MusicTrack_ClearModulation": {"address": "0x081c30ac", "kind": "thumb"} + "MusicTrack_ClearModulation": { + "address": "0x081c30ac", + "kind": "thumb" + } }, "local_symbols": [], - "owners": [{"address": "0x081c30cc", "extent": 116, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c30cc", + "extent": 116, + "state": "exact-c" + } + ], "overlay": null }, { @@ -330,10 +690,19 @@ "source": "games/COMMON/SRC/SOUND/MUSIC_PLAYER_SET_LFO_SPEED.C", "compiler_route": "canonical-gcc296", "absolute_symbols": { - "MusicTrack_ClearModulation": {"address": "0x081c30ac", "kind": "thumb"} + "MusicTrack_ClearModulation": { + "address": "0x081c30ac", + "kind": "thumb" + } }, "local_symbols": [], - "owners": [{"address": "0x081c3140", "extent": 116, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c3140", + "extent": 116, + "state": "exact-c" + } + ], "overlay": null }, { @@ -343,7 +712,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c30ac", "extent": 30, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c30ac", + "extent": 30, + "state": "exact-c" + } + ], "overlay": null }, { @@ -353,7 +728,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c33b0", "extent": 18, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c33b0", + "extent": 18, + "state": "exact-c" + } + ], "overlay": null }, { @@ -363,7 +744,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c33c4", "extent": 18, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c33c4", + "extent": 18, + "state": "exact-c" + } + ], "overlay": null }, { @@ -373,7 +760,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c33d8", "extent": 18, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c33d8", + "extent": 18, + "state": "exact-c" + } + ], "overlay": null }, { @@ -383,7 +776,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c33ec", "extent": 12, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c33ec", + "extent": 12, + "state": "exact-c" + } + ], "overlay": null }, { @@ -393,7 +792,13 @@ "compiler_route": "canonical-gcc296", "absolute_symbols": {}, "local_symbols": [], - "owners": [{"address": "0x081c33f8", "extent": 12, "state": "exact-c"}], + "owners": [ + { + "address": "0x081c33f8", + "extent": 12, + "state": "exact-c" + } + ], "overlay": null }, { @@ -806,6 +1211,212 @@ "state": "exact-c" } ] + }, + { + "id": "tla-script-operands", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": { + "Data_0802f2dc": { + "address": "0x0802f2dc", + "kind": "data" + } + }, + "local_symbols": [], + "owners": [ + { + "address": "0x08025b58", + "extent": 42, + "state": "exact-c" + }, + { + "address": "0x08025b84", + "extent": 48, + "state": "exact-c" + }, + { + "address": "0x08025be4", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025c0c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025c34", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025c8c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025cb4", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025cdc", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025d04", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025d2c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025d54", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025d7c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025da4", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025dcc", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025df4", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025e1c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025e44", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025e6c", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025e94", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08025ebc", + "extent": 42, + "state": "exact-c" + }, + { + "address": "0x08025ee8", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08025f24", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08025f60", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08025fd0", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x0802600c", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08026048", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08026084", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x080260c0", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x080260fc", + "extent": 60, + "state": "exact-c" + }, + { + "address": "0x08026138", + "extent": 60, + "state": "exact-c" + }, + { + "address": "0x08026174", + "extent": 60, + "state": "exact-c" + }, + { + "address": "0x080261b0", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x080261d8", + "extent": 40, + "state": "exact-c" + }, + { + "address": "0x08026200", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x0802623c", + "extent": 58, + "state": "exact-c" + }, + { + "address": "0x08026278", + "extent": 56, + "state": "exact-c" + }, + { + "address": "0x080262b0", + "extent": 56, + "state": "exact-c" + }, + { + "address": "0x080262e8", + "extent": 56, + "state": "exact-c" + } + ], + "overlay": null } ] } diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 468695b50f..09fb993934 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -1,9 +1,15 @@ { "format": 3, "owners": { - "resource_64d:020026f4": {"name": "Scene_CreateSpriteField"}, - "main:080dc244": {"name": "Field_BeginPaletteTransition"}, - "resource_64d:02000510": {"name": "Scene_PlayApproachEvent"}, + "resource_64d:020026f4": { + "name": "Scene_CreateSpriteField" + }, + "main:080dc244": { + "name": "Field_BeginPaletteTransition" + }, + "resource_64d:02000510": { + "name": "Scene_PlayApproachEvent" + }, "main:08016d5c": { "name": "GameFlag_GetByte", "source": "GAME/FLAGS/GET_BYTE.C" @@ -352,6 +358,121 @@ "resource_64d:02000308": { "name": "Scene_PrepareMap", "source": "FIELD/VINASU_IRIGUCHI/ENTRANCE.C" + }, + "main:08025b58": { + "name": "Script_SetOrCompareAddress", + "source": "FIELD/COMMON/SCRIPT/OPERANDS.C" + }, + "main:08025b84": { + "name": "Script_SetOrCompareCursor" + }, + "main:08025be4": { + "name": "Script_SetOrCompareWord08" + }, + "main:08025c0c": { + "name": "Script_SetOrCompareWord0c" + }, + "main:08025c34": { + "name": "Script_SetOrCompareWord10" + }, + "main:08025c8c": { + "name": "Script_SetOrCompareWord18" + }, + "main:08025cb4": { + "name": "Script_SetOrCompareWord1c" + }, + "main:08025cdc": { + "name": "Script_SetOrCompareWord24" + }, + "main:08025d04": { + "name": "Script_SetOrCompareWord28" + }, + "main:08025d2c": { + "name": "Script_SetOrCompareWord2c" + }, + "main:08025d54": { + "name": "Script_SetOrCompareWord30" + }, + "main:08025d7c": { + "name": "Script_SetOrCompareWord34" + }, + "main:08025da4": { + "name": "Script_SetOrCompareWord38" + }, + "main:08025dcc": { + "name": "Script_SetOrCompareWord3c" + }, + "main:08025df4": { + "name": "Script_SetOrCompareWord40" + }, + "main:08025e1c": { + "name": "Script_SetOrCompareWord44" + }, + "main:08025e44": { + "name": "Script_SetOrCompareWord48" + }, + "main:08025e6c": { + "name": "Script_SetOrCompareWord14" + }, + "main:08025e94": { + "name": "Script_SetOrCompareWord4c" + }, + "main:08025ebc": { + "name": "Script_SetOrCompareAddress50" + }, + "main:08025ee8": { + "name": "Script_SetOrCompareByte54" + }, + "main:08025f24": { + "name": "Script_SetOrCompareByte55" + }, + "main:08025f60": { + "name": "Script_SetOrCompareByte56" + }, + "main:08025fd0": { + "name": "Script_SetOrCompareByte58" + }, + "main:0802600c": { + "name": "Script_SetOrCompareByte59" + }, + "main:08026048": { + "name": "Script_SetOrCompareByte5a" + }, + "main:08026084": { + "name": "Script_SetOrCompareByte5b" + }, + "main:080260c0": { + "name": "Script_SetOrCompareByte5d" + }, + "main:080260fc": { + "name": "Script_SetOrCompareHalfword5e" + }, + "main:08026138": { + "name": "Script_SetOrCompareSignedHalfword64" + }, + "main:08026174": { + "name": "Script_SetOrCompareSignedHalfword66" + }, + "main:080261b0": { + "name": "Script_SetOrCompareWord68" + }, + "main:080261d8": { + "name": "Script_SetOrCompareWord6c" + }, + "main:08026200": { + "name": "Script_SetOrCompareByte62" + }, + "main:0802623c": { + "name": "Script_SetOrCompareByte63" + }, + "main:08026278": { + "name": "Script_ApplyOperandSet" + }, + "main:080262b0": { + "name": "Script_ApplyOperandAdd" + }, + "main:080262e8": { + "name": "Script_ApplyOperandCompare" } } } From 13becf0d44bf975ee9b8f697eeec3a71e256f1fd Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 13:37:53 +0100 Subject: [PATCH 4/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=20Script=5FStoreLookupResult?= =?UTF-8?q?=20(+30=20B=20exact)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Slim INTERPRETER_CONTROL.C with only Script_StoreLookupResult at main:08024c50. Rest of TBS script-interpreter-control does not pack the same on TLA; bounce LoadMainScript (2hw) and park in Stubborn. --- README.md | 2 +- TODO.md | 26 +- games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4250 +++++++++-------- .../THE LOST AGE/INCLUDE/SCRIPT_INTERPRETER.H | 21 + .../FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C | 10 + .../THE LOST AGE/recon/translation-units.json | 16 + games/THE LOST AGE/source-paths.json | 4 + 7 files changed, 2194 insertions(+), 2135 deletions(-) create mode 100644 games/THE LOST AGE/INCLUDE/SCRIPT_INTERPRETER.H create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C diff --git a/README.md b/README.md index f1440a88fc..6df9d5598b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The two games share much of the same code, so Alchemy recovers them side by side ## Status: ☀️ 55.96% · ⚓️ 0.27% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/TODO.md b/TODO.md index 281d5414ca..bc86b01330 100644 --- a/TODO.md +++ b/TODO.md @@ -11,17 +11,21 @@ that finishes it. Reach 60% of the fixed executable inventory. Read the current verified count with `make progress`; do not maintain a second score in this task list. -- Recheck and adopt what the stopped recovery run found. Exact: - `main:080fa514` (72 bytes) and `main:08092878` (172 bytes). Exact at 54 bytes - each: `resource_39e:02000104` and `resource_3c9:02000104`, the `Effect_Move` - family; eleven more copies differ by one halfword, so the family wants one - shared source with instances. -- Rebuild coverage with `make coverage`, then rank unresolved owners from it, - twins of exact owners first. -- Recount the owners still parked because their only match needed a - scheduling trick. The five overlay copies of `0809a65c` still hold a - `do { } while (0)` barrier. `SpawnConfiguredEffect` (23 copies) stays a - recorded compiler gap unless new evidence reopens it. +- On `cursor/tbs-to-60`, `Effect_Move` is adopted. Agents: if an owner is not + exact inside a 10-minute window, park it under Stubborn and switch. + +### Stubborn (hard-pass later) + +Parked for a stronger model. Agents must not burn a 10-minute window here. + +- `main:080fa514` (72 B), `main:08092878` (172 B) — still non-exact. +- `resource_3bd:020013f8` (6220 B) — scheduling-floor, 2 halfwords. +- Overlay `0809a65c` `do{}while(0)` copies; `SpawnConfiguredEffect` compiler gap. +- Recorded `copy_versus_rematerialise` / `instruction-selection` walls — stop. +- TLA Venus `resource_64d:02000510` — lifter repair required (see below). +- TLA field-operand floors `08025bb4` / `08025c5c` / `08025f9c` — already parked. +- TLA `script-interpreter-control` beyond `main:08024c50` — layout/bindings + differ from TBS; do not thrash WaitForEvent at wrong addresses. ### Reconstruct The Lost Age diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index db2db6fd93..cb3dfbe830 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,8079 +26342,8083 @@ THE LOST AGE - -SRC: 14,194,406 bytes · C, Data · 6 items - - - + +SRC: 14,194,436 bytes · C, Data · 6 items + + + SRC BATTLE: 84 bytes · C · 1 items - - - + + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + - -FIELD: 712,616 bytes · C, Data · 8 items - - - -FIELD - -COMMON: 11,644 bytes · C, Data · 7 items - - - + +FIELD: 712,646 bytes · C, Data · 8 items + + + +FIELD + +COMMON: 11,674 bytes · C, Data · 7 items + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + + + +SCRIPT: 1,850 bytes · C · 2 items + + + + +INTERPRETER_CONTROL.C · 0x08024c50: 30 bytes · C · 0x08024c50 + - -SCRIPT: 1,820 bytes · C · 1 items - - - OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 - + OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 - + OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 - + OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c - + OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 - + OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c - + OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 - + OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc - + OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 - + OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c - + OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 - + OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c - + OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 - + OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc - + OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 - + OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c - + OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 - + OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c - + OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 - + OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc - + OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 - + OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 - + OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 - + OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 - + OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c - + OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 - + OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 - + OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 - + OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc - + OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 - + OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 - + OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 - + OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 - + OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 - + OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c - + OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 - + OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 - + OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 - + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + GAME: 60 bytes · C · 1 items - - - + + + FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + + + +GRAPHICS CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,274,038 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,529,128 bytes · Assembly - -main.s + +raw: 2,274,008 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,529,098 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE LOST AGE/INCLUDE/SCRIPT_INTERPRETER.H b/games/THE LOST AGE/INCLUDE/SCRIPT_INTERPRETER.H new file mode 100644 index 0000000000..d38111d9fd --- /dev/null +++ b/games/THE LOST AGE/INCLUDE/SCRIPT_INTERPRETER.H @@ -0,0 +1,21 @@ +#ifndef ALCHEMY_SCRIPT_INTERPRETER_H +#define ALCHEMY_SCRIPT_INTERPRETER_H + +#include "TYPES.H" + +struct ScriptInterpreter; + +typedef s32 (*ScriptCommand)(struct ScriptInterpreter *); + +struct ScriptInterpreter { + const s32 *script; + s16 cursor; + u8 padding_06[0x51]; + u8 condition_result; + u8 padding_58[5]; + u8 repeat_count; + s16 lookup_result; + u8 delay; +}; + +#endif diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C new file mode 100644 index 0000000000..d4e0f59d9a --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C @@ -0,0 +1,10 @@ +#include "SCRIPT_INTERPRETER.H" + +s32 Script_StoreLookupResult(struct ScriptInterpreter *interpreter) +{ + s16 cursor = interpreter->cursor; + + interpreter->lookup_result = interpreter->script[cursor + 1] - 1; + interpreter->cursor = (u16)interpreter->cursor + 2; + return 0; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index eb75994999..18bd5fb3b5 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -1417,6 +1417,22 @@ } ], "overlay": null + }, + { + "id": "tla-script-interpreter-control", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x08024c50", + "extent": 30, + "state": "exact-c" + } + ], + "overlay": null } ] } diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 09fb993934..481457a1b1 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -473,6 +473,10 @@ }, "main:080262e8": { "name": "Script_ApplyOperandCompare" + }, + "main:08024c50": { + "name": "Script_StoreLookupResult", + "source": "FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C" } } } From c582037b3371ba03743689cfdb1abdc9259de964 Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 14:18:26 +0100 Subject: [PATCH 5/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=20Script=5FSkipCommand=20+?= =?UTF-8?q?=20Curve=5FGetFirstSampleA=20(+20=20B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Byte-identical TBS ports at main:08024ed4 (10 B) and main:0802d23c (10 B). Park Audio_EmptyCallback (outside audited ranges) and Curve_Lerp epilogue mismatch under Stubborn. --- README.md | 2 +- TODO.md | 6 + games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4262 +++++++++-------- games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG | 835 ++++ games/THE LOST AGE/INCLUDE/CURVE.H | 12 + .../SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C | 7 + games/THE LOST AGE/SRC/LIB/CURVE.C | 6 + .../THE LOST AGE/recon/translation-units.json | 32 + games/THE LOST AGE/source-paths.json | 8 + 9 files changed, 3045 insertions(+), 2125 deletions(-) create mode 100644 games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG create mode 100644 games/THE LOST AGE/INCLUDE/CURVE.H create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C create mode 100644 games/THE LOST AGE/SRC/LIB/CURVE.C diff --git a/README.md b/README.md index 6df9d5598b..560778a7dc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The two games share much of the same code, so Alchemy recovers them side by side ## Status: ☀️ 55.96% · ⚓️ 0.27% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/TODO.md b/TODO.md index bc86b01330..9b985510a6 100644 --- a/TODO.md +++ b/TODO.md @@ -16,8 +16,14 @@ with `make progress`; do not maintain a second score in this task list. ### Stubborn (hard-pass later) +- Prefer never-drafted TLA regions over near-miss halfword floors. + + Parked for a stronger model. Agents must not burn a 10-minute window here. +- `main:081c342c` Audio_EmptyCallback (2 B) — scores exact with `--size 2`, but lies outside audited main executable ranges in metrics/executable.json; bounce until ranges include it. +- `main:0802d246` Curve_LerpTwoSamples family — TBS body matches except Thumb epilogue (`pop {pc}` vs `pop {r1}; bx r1`); needs TLA-specific spelling. + - `main:080fa514` (72 B), `main:08092878` (172 B) — still non-exact. - `resource_3bd:020013f8` (6220 B) — scheduling-floor, 2 halfwords. - Overlay `0809a65c` `do{}while(0)` copies; `SpawnConfiguredEffect` compiler gap. diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index cb3dfbe830..93c7979327 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,8083 +26342,8097 @@ THE LOST AGE - -SRC: 14,194,436 bytes · C, Data · 6 items - - - + +SRC: 14,194,456 bytes · C, Data · 7 items + + + SRC BATTLE: 84 bytes · C · 1 items - - - + + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + - -FIELD: 712,646 bytes · C, Data · 8 items - - - -FIELD - -COMMON: 11,674 bytes · C, Data · 7 items - - - + +FIELD: 712,656 bytes · C, Data · 8 items + + + +FIELD + +COMMON: 11,684 bytes · C, Data · 7 items + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + - -SCRIPT: 1,850 bytes · C · 2 items - - - + +SCRIPT: 1,860 bytes · C · 3 items + + + INTERPRETER_CONTROL.C · 0x08024c50: 30 bytes · C · 0x08024c50 - + OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 - + OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 - + OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 - + OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c - + OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 - + OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c - + OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 - + OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc - + OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 - + OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c - + OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 - + OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c - + OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 - + OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc - + OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 - + OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c - + OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 - + OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c - + OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 - + OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc - + OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 - + OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 - + OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 - + OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 - + OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c - + OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 - + OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 - + OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 - + OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc - + OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 - + OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 - + OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 - + OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 - + OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 - + OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c - + OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 - + OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 - + OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 - + + +SKIP_COMMAND.C · 0x08024ed4: 10 bytes · C · 0x08024ed4 + + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + GAME: 60 bytes · C · 1 items - - - + + + FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + + + +GRAPHICS CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + + + + +LIB: 10 bytes · C · 1 items + + + + +CURVE.C · 0x0802d23c: 10 bytes · C · 0x0802d23c + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,274,008 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,529,098 bytes · Assembly - -main.s + +raw: 2,273,988 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,529,078 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG new file mode 100644 index 0000000000..007b45ac77 --- /dev/null +++ b/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG @@ -0,0 +1,835 @@ + + + +Alchemy + +Alchemy +16,777,216 + + +0x080000c0–0x08010000: 65,344 bytes · Unknown · 0x080000c0 + + + +0x08010000–0x080132cc: 13,004 bytes · Unknown · 0x08010000 + + + +0x080132d0–0x08016d5c: 14,988 bytes · Unknown · 0x080132d0 + + + +0x08016d7c–0x08016db4: 56 bytes · Unknown · 0x08016d7c + + + +0x08016dd0–0x08017b10: 3,392 bytes · Unknown · 0x08016dd0 + + + +0x08017cd0–0x08020000: 33,584 bytes · Unknown · 0x08017cd0 + + + +0x08020000–0x08024c50: 19,536 bytes · Unknown · 0x08020000 + + + +0x08024c6e–0x08024ed4: 614 bytes · Unknown · 0x08024c6e + + + +0x08024ede–0x08025b58: 3,194 bytes · Unknown · 0x08024ede + + + +0x08025b82–0x08025b84: 2 bytes · Unknown · 0x08025b82 + + + +0x08025bb4–0x08025be4: 48 bytes · Unknown · 0x08025bb4 + + + +0x08025c5c–0x08025c8c: 48 bytes · Unknown · 0x08025c5c + + + +0x08025ee6–0x08025ee8: 2 bytes · Unknown · 0x08025ee6 + + + +0x08025f22–0x08025f24: 2 bytes · Unknown · 0x08025f22 + + + +0x08025f5e–0x08025f60: 2 bytes · Unknown · 0x08025f5e + + + +0x08025f9a–0x08025fd0: 54 bytes · Unknown · 0x08025f9a + + + +0x0802600a–0x0802600c: 2 bytes · Unknown · 0x0802600a + + + +0x08026046–0x08026048: 2 bytes · Unknown · 0x08026046 + + + +0x08026082–0x08026084: 2 bytes · Unknown · 0x08026082 + + + +0x080260be–0x080260c0: 2 bytes · Unknown · 0x080260be + + + +0x080260fa–0x080260fc: 2 bytes · Unknown · 0x080260fa + + + +0x0802623a–0x0802623c: 2 bytes · Unknown · 0x0802623a + + + +0x08026276–0x08026278: 2 bytes · Unknown · 0x08026276 + + + +0x08026320–0x0802d23c: 28,444 bytes · Unknown · 0x08026320 + + + +0x0802d246–0x0802f380: 8,506 bytes · Unknown · 0x0802d246 + + + +0x08030310–0x08040000: 64,752 bytes · Unknown · 0x08030310 + + + +0x08040000–0x08050000: 65,536 bytes · Unknown · 0x08040000 + + + +0x08050000–0x0805f914: 63,764 bytes · Unknown · 0x08050000 + + + +0x080aa0dc–0x080b0000: 24,356 bytes · Unknown · 0x080aa0dc + + + +0x080b0000–0x080c0000: 65,536 bytes · Unknown · 0x080b0000 + + + +0x080c0000–0x080caf70: 44,912 bytes · Unknown · 0x080c0000 + + + +0x080cafc4–0x080d0000: 20,540 bytes · Unknown · 0x080cafc4 + + + +0x080d0000–0x080e0000: 65,536 bytes · Unknown · 0x080d0000 + + + +0x080e0000–0x080ef4a4: 62,628 bytes · Unknown · 0x080e0000 + + + +0x080ef81c–0x080f0000: 2,020 bytes · Unknown · 0x080ef81c + + + +0x080f0000–0x080f17a8: 6,056 bytes · Unknown · 0x080f0000 + + + +0x080f21d0–0x08100000: 56,880 bytes · Unknown · 0x080f21d0 + + + +0x08100000–0x08110000: 65,536 bytes · Unknown · 0x08100000 + + + +0x08110000–0x08120000: 65,536 bytes · Unknown · 0x08110000 + + + +0x08120000–0x08130000: 65,536 bytes · Unknown · 0x08120000 + + + +0x08130000–0x08140000: 65,536 bytes · Unknown · 0x08130000 + + + +0x08140000–0x08150000: 65,536 bytes · Unknown · 0x08140000 + + + +0x08150000–0x08160000: 65,536 bytes · Unknown · 0x08150000 + + + +0x08160000–0x08170000: 65,536 bytes · Unknown · 0x08160000 + + + +0x08170000–0x08180000: 65,536 bytes · Unknown · 0x08170000 + + + +0x08180000–0x08190000: 65,536 bytes · Unknown · 0x08180000 + + + +0x08190000–0x081a0000: 65,536 bytes · Unknown · 0x08190000 + + + +0x081a0000–0x081b0000: 65,536 bytes · Unknown · 0x081a0000 + + + +0x081b0000–0x081c0000: 65,536 bytes · Unknown · 0x081b0000 + + + +0x081c0000–0x081c1e98: 7,832 bytes · Unknown · 0x081c0000 + + + +0x081c1efe–0x081c1f3c: 62 bytes · Unknown · 0x081c1efe + + + +0x081c1fbe–0x081c1fc0: 2 bytes · Unknown · 0x081c1fbe + + + +0x081c212a–0x081c212c: 2 bytes · Unknown · 0x081c212a + + + +0x081c2166–0x081c21f8: 146 bytes · Unknown · 0x081c2166 + + + +0x081c2310–0x081c233c: 44 bytes · Unknown · 0x081c2310 + + + +0x081c2af4–0x081c2f68: 1,140 bytes · Unknown · 0x081c2af4 + + + +0x081c30ca–0x081c30cc: 2 bytes · Unknown · 0x081c30ca + + + +0x081c332c–0x081c3340: 20 bytes · Unknown · 0x081c332c + + + +0x081c3388–0x081c33b0: 40 bytes · Unknown · 0x081c3388 + + + +0x081c33c2–0x081c33c4: 2 bytes · Unknown · 0x081c33c2 + + + +0x081c33d6–0x081c33d8: 2 bytes · Unknown · 0x081c33d6 + + + +0x081c33ea–0x081c33ec: 2 bytes · Unknown · 0x081c33ea + + + +Unclassified ROM data: 15,194,024 bytes · Unknown + + + +games: 54,114 bytes · Unknown, C · 2 items + + + + +COMMON: 3,676 bytes · C · 1 items + + + + +SRC: 3,676 bytes · C · 1 items + + + + +SOUND: 3,676 bytes · C · 24 items + + + + +0x081c2640–0x081c267c: 60 bytes · C · 0x081c2640 + + + +0x081c2a3c–0x081c2a8c: 80 bytes · C · 0x081c2a3c + + + +0x081c2994–0x081c2a3c: 168 bytes · C · 0x081c2994 + + + +0x081c2a8c–0x081c2af4: 104 bytes · C · 0x081c2a8c + + + +ENGINE_INITIALIZE.C: 772 bytes · C · 5 items + + + + +0x081c233c–0x081c2434: 248 bytes · C · 0x081c233c + + + +0x081c2434–0x081c24d8: 164 bytes · C · 0x081c2434 + + + +0x081c24d8–0x081c2570: 152 bytes · C · 0x081c24d8 + + + +0x081c2570–0x081c25c4: 84 bytes · C · 0x081c2570 + + + +0x081c25c4–0x081c2640: 124 bytes · C · 0x081c25c4 + + + + +0x081c21f8–0x081c2310: 280 bytes · C · 0x081c21f8 + + + +MUSIC_PLAYER.C: 412 bytes · C · 3 items + + + + +0x081c267c–0x081c26f4: 120 bytes · C · 0x081c267c + + + +0x081c26f4–0x081c27d8: 228 bytes · C · 0x081c26f4 + + + +0x081c27d8–0x081c2818: 64 bytes · C · 0x081c27d8 + + + + +0x081c3140–0x081c31b4: 116 bytes · C · 0x081c3140 + + + +0x081c30cc–0x081c3140: 116 bytes · C · 0x081c30cc + + + +0x081c3044–0x081c30ac: 104 bytes · C · 0x081c3044 + + + +0x081c2fd0–0x081c3044: 116 bytes · C · 0x081c2fd0 + + + +0x081c2f68–0x081c2fd0: 104 bytes · C · 0x081c2f68 + + + +0x081c2818–0x081c28e0: 200 bytes · C · 0x081c2818 + + + +0x081c28e0–0x081c2994: 180 bytes · C · 0x081c28e0 + + + +0x081c30ac–0x081c30ca: 30 bytes · C · 0x081c30ac + + + +0x081c330c–0x081c332c: 32 bytes · C · 0x081c330c + + + +0x081c3340–0x081c3388: 72 bytes · C · 0x081c3340 + + + +0x081c33f8–0x081c3404: 12 bytes · C · 0x081c33f8 + + + +0x081c33ec–0x081c33f8: 12 bytes · C · 0x081c33ec + + + +0x081c33b0–0x081c33c2: 18 bytes · C · 0x081c33b0 + + + +0x081c33d8–0x081c33ea: 18 bytes · C · 0x081c33d8 + + + +0x081c33c4–0x081c33d6: 18 bytes · C · 0x081c33c4 + + + +PCM_KEY_TO_FREQUENCY.C: 102 bytes · C · 2 items + + + + +0x081c1e98–0x081c1efc: 100 bytes · C · 0x081c1e98 + + + +0x081c1efc–0x081c1efe: 2 bytes · C · 0x081c1efc + + + + +SOUND.C: 550 bytes · C · 11 items + + + + +0x081c1f3c–0x081c1fb4: 120 bytes · C · 0x081c1f3c + + + +0x081c1fb4–0x081c1fbe: 10 bytes · C · 0x081c1fb4 + + + +0x081c1fc0–0x081c1fec: 44 bytes · C · 0x081c1fc0 + + + +0x081c1fec–0x081c2038: 76 bytes · C · 0x081c1fec + + + +0x081c2038–0x081c208c: 84 bytes · C · 0x081c2038 + + + +0x081c208c–0x081c20c0: 52 bytes · C · 0x081c208c + + + +0x081c20c0–0x081c20f4: 52 bytes · C · 0x081c20c0 + + + +0x081c20f4–0x081c2120: 44 bytes · C · 0x081c20f4 + + + +0x081c2120–0x081c212a: 10 bytes · C · 0x081c2120 + + + +0x081c212c–0x081c2158: 44 bytes · C · 0x081c212c + + + +0x081c2158–0x081c2166: 14 bytes · C · 0x081c2158 + + + + + + + +THE LOST AGE: 50,438 bytes · Unknown, C · 1 items + + + + +SRC: 50,438 bytes · Unknown, C · 7 items + + + + +BATTLE: 84 bytes · C · 1 items + + + + +EFFECT: 84 bytes · C · 1 items + + + + +0x080caf70–0x080cafc4: 84 bytes · C · 0x080caf70 + + + + + +FIELD: 42,496 bytes · Unknown, C · 8 items + + + + +COMMON: 1,860 bytes · C · 1 items + + + + +SCRIPT: 1,860 bytes · C · 3 items + + + + +0x08024c50–0x08024c6e: 30 bytes · C · 0x08024c50 + + + +OPERANDS.C: 1,820 bytes · C · 38 items + + + + +0x08025b58–0x08025b82: 42 bytes · C · 0x08025b58 + + + +0x08025b84–0x08025bb4: 48 bytes · C · 0x08025b84 + + + +0x08025be4–0x08025c0c: 40 bytes · C · 0x08025be4 + + + +0x08025c0c–0x08025c34: 40 bytes · C · 0x08025c0c + + + +0x08025c34–0x08025c5c: 40 bytes · C · 0x08025c34 + + + +0x08025c8c–0x08025cb4: 40 bytes · C · 0x08025c8c + + + +0x08025cb4–0x08025cdc: 40 bytes · C · 0x08025cb4 + + + +0x08025cdc–0x08025d04: 40 bytes · C · 0x08025cdc + + + +0x08025d04–0x08025d2c: 40 bytes · C · 0x08025d04 + + + +0x08025d2c–0x08025d54: 40 bytes · C · 0x08025d2c + + + +0x08025d54–0x08025d7c: 40 bytes · C · 0x08025d54 + + + +0x08025d7c–0x08025da4: 40 bytes · C · 0x08025d7c + + + +0x08025da4–0x08025dcc: 40 bytes · C · 0x08025da4 + + + +0x08025dcc–0x08025df4: 40 bytes · C · 0x08025dcc + + + +0x08025df4–0x08025e1c: 40 bytes · C · 0x08025df4 + + + +0x08025e1c–0x08025e44: 40 bytes · C · 0x08025e1c + + + +0x08025e44–0x08025e6c: 40 bytes · C · 0x08025e44 + + + +0x08025e6c–0x08025e94: 40 bytes · C · 0x08025e6c + + + +0x08025e94–0x08025ebc: 40 bytes · C · 0x08025e94 + + + +0x08025ebc–0x08025ee6: 42 bytes · C · 0x08025ebc + + + +0x08025ee8–0x08025f22: 58 bytes · C · 0x08025ee8 + + + +0x08025f24–0x08025f5e: 58 bytes · C · 0x08025f24 + + + +0x08025f60–0x08025f9a: 58 bytes · C · 0x08025f60 + + + +0x08025fd0–0x0802600a: 58 bytes · C · 0x08025fd0 + + + +0x0802600c–0x08026046: 58 bytes · C · 0x0802600c + + + +0x08026048–0x08026082: 58 bytes · C · 0x08026048 + + + +0x08026084–0x080260be: 58 bytes · C · 0x08026084 + + + +0x080260c0–0x080260fa: 58 bytes · C · 0x080260c0 + + + +0x080260fc–0x08026138: 60 bytes · C · 0x080260fc + + + +0x08026138–0x08026174: 60 bytes · C · 0x08026138 + + + +0x08026174–0x080261b0: 60 bytes · C · 0x08026174 + + + +0x080261b0–0x080261d8: 40 bytes · C · 0x080261b0 + + + +0x080261d8–0x08026200: 40 bytes · C · 0x080261d8 + + + +0x08026200–0x0802623a: 58 bytes · C · 0x08026200 + + + +0x0802623c–0x08026276: 58 bytes · C · 0x0802623c + + + +0x08026278–0x080262b0: 56 bytes · C · 0x08026278 + + + +0x080262b0–0x080262e8: 56 bytes · C · 0x080262b0 + + + +0x080262e8–0x08026320: 56 bytes · C · 0x080262e8 + + + + +0x08024ed4–0x08024ede: 10 bytes · C · 0x08024ed4 + + + + + +DAIRA_HEYA: 2,868 bytes · Unknown · 1 items + + + + +DAIRA_HEYA: 2,868 bytes · Unknown · 0x08ed1b90 + + + + +DAIRA_MURA: 2,508 bytes · Unknown · 1 items + + + + +DAIRA_MURA: 2,508 bytes · Unknown · 0x08ed11c4 + + + + +IDEJIMA: 6,240 bytes · Unknown, C · 1 items + + + + +IDEJIMA: 6,240 bytes · Unknown, C · 0x08ecf964 + + + + + +SUHARA_GATE: 1,992 bytes · Unknown · 1 items + + + + +SUHARA_GATE: 1,992 bytes · Unknown · 0x08ecf19c + + + + +VINASU_CHOJO: 4,536 bytes · Unknown, C · 1 items + + + + +VINASU_CHOJO: 4,536 bytes · Unknown, C · 0x08ecdfe4 + + + + + +VINASU_IRIGUCHI: 6,636 bytes · Unknown, C · 1 items + + + + +VINASU_IRIGUCHI: 6,636 bytes · Unknown, C · 0x08ecc5f8 + + + + + +WORLD_MAP: 15,856 bytes · Unknown · 1 items + + + + +WORLD_MAP: 15,856 bytes · Unknown · 0x08ec5a18 + + + + + +GAME: 60 bytes · C · 1 items + + + + +FLAGS: 60 bytes · C · 3 items + + + + +0x08016d5c–0x08016d6c: 16 bytes · C · 0x08016d5c + + + +0x08016db4–0x08016dd0: 28 bytes · C · 0x08016db4 + + + +0x08016d6c–0x08016d7c: 16 bytes · C · 0x08016d6c + + + + + +LIB: 10 bytes · C · 1 items + + + + +0x0802d23c–0x0802d246: 10 bytes · C · 0x0802d23c + + + + +MENU: 7,440 bytes · Unknown · 1 items + + + + +CLEAR: 7,440 bytes · Unknown · 1 items + + + + +CLEAR: 7,440 bytes · Unknown · 0x08ec3d08 + + + + + +SOUND: 344 bytes · C · 1 items + + + + +0x081c31b4–0x081c330c: 344 bytes · C · 0x081c31b4 + + + + +SYSTEM: 4 bytes · C · 1 items + + + + +0x080132cc–0x080132d0: 4 bytes · C · 0x080132cc + + + + + + + +Unknown 100.0% + +C 0.0% + + + + diff --git a/games/THE LOST AGE/INCLUDE/CURVE.H b/games/THE LOST AGE/INCLUDE/CURVE.H new file mode 100644 index 0000000000..d4aa1e3de7 --- /dev/null +++ b/games/THE LOST AGE/INCLUDE/CURVE.H @@ -0,0 +1,12 @@ +#ifndef ALCHEMY_CURVE_H +#define ALCHEMY_CURVE_H + +#include "TYPES.H" + +enum { + CURVE_VALUE_SHIFT = 19, + CURVE_HALF_STEPS = 8, + CURVE_FULL_STEPS = 16, +}; + +#endif diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C new file mode 100644 index 0000000000..c0e85106ad --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C @@ -0,0 +1,7 @@ +#include "SCRIPT_INTERPRETER.H" + +s32 Script_SkipCommand(struct ScriptInterpreter *interpreter) +{ + interpreter->cursor = (u16)interpreter->cursor + 2; + return 1; +} diff --git a/games/THE LOST AGE/SRC/LIB/CURVE.C b/games/THE LOST AGE/SRC/LIB/CURVE.C new file mode 100644 index 0000000000..233d31b8eb --- /dev/null +++ b/games/THE LOST AGE/SRC/LIB/CURVE.C @@ -0,0 +1,6 @@ +#include "CURVE.H" + +s32 Curve_GetFirstSampleA(const s8 *samples) +{ + return samples[0] << CURVE_VALUE_SHIFT; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index 18bd5fb3b5..2b5761f94f 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -1433,6 +1433,38 @@ } ], "overlay": null + }, + { + "id": "tla-math-curve", + "game": "tla", + "source": "games/THE LOST AGE/SRC/LIB/CURVE.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x0802d23c", + "extent": 10, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-script-skip-command", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/SKIP_COMMAND.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x08024ed4", + "extent": 10, + "state": "exact-c" + } + ], + "overlay": null } ] } diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 481457a1b1..9f6f7c2bac 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -477,6 +477,14 @@ "main:08024c50": { "name": "Script_StoreLookupResult", "source": "FIELD/COMMON/SCRIPT/INTERPRETER_CONTROL.C" + }, + "main:08024ed4": { + "name": "Script_SkipCommand", + "source": "FIELD/COMMON/SCRIPT/SKIP_COMMAND.C" + }, + "main:0802d23c": { + "name": "Curve_GetFirstSampleA", + "source": "LIB/CURVE.C" } } } From 85ea2fbc634c12453023e14856247a5285fc545d Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 14:50:18 +0100 Subject: [PATCH 6/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=20three=20more=20Curve=20own?= =?UTF-8?q?ers=20on=20TLA=20(+104=20B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Curve_LerpTwoSamples, Curve_LerpTwoSamplesB, and Curve_StepAtSummedPosition are byte-exact on TLA with pop {pc} epilogues (104 B). Shared tla-math-curve unit stays exact. Park Curve_StepAtDifferencePosition (scheduling-floor). --- README.md | 4 +- TODO.md | 2 +- games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4268 +++++++++-------- games/THE LOST AGE/INCLUDE/CURVE.H | 5 + games/THE LOST AGE/SRC/LIB/CURVE.C | 49 + .../THE LOST AGE/recon/translation-units.json | 15 + games/THE LOST AGE/source-paths.json | 9 + 7 files changed, 2224 insertions(+), 2128 deletions(-) diff --git a/README.md b/README.md index 560778a7dc..29b2f7349b 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ In Golden Sun, lighting the four Elemental Lighthouses releases Alchemy upon the The two games share much of the same code, so Alchemy recovers them side by side. -## Status: ☀️ 55.96% · ⚓️ 0.27% +## Status: ☀️ 55.96% · ⚓️ 0.28% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/TODO.md b/TODO.md index 9b985510a6..76b634027f 100644 --- a/TODO.md +++ b/TODO.md @@ -22,7 +22,7 @@ with `make progress`; do not maintain a second score in this task list. Parked for a stronger model. Agents must not burn a 10-minute window here. - `main:081c342c` Audio_EmptyCallback (2 B) — scores exact with `--size 2`, but lies outside audited main executable ranges in metrics/executable.json; bounce until ranges include it. -- `main:0802d246` Curve_LerpTwoSamples family — TBS body matches except Thumb epilogue (`pop {pc}` vs `pop {r1}; bx r1`); needs TLA-specific spelling. +- `main:0802d2b0` Curve_StepAtDifferencePosition (48 B) — scheduling-floor on TLA; bounce. (LerpTwoSamples / LerpTwoSamplesB / StepAtSummedPosition adopted via TLA `pop {pc}` spelling.) - `main:080fa514` (72 B), `main:08092878` (172 B) — still non-exact. - `resource_3bd:020013f8` (6220 B) — scheduling-floor, 2 halfwords. diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index 93c7979327..a6afb750da 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,8097 +26342,8115 @@ THE LOST AGE - -SRC: 14,194,456 bytes · C, Data · 7 items - - - + +SRC: 14,194,560 bytes · C, Data · 7 items + + + SRC BATTLE: 84 bytes · C · 1 items - - - + + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + FIELD: 712,656 bytes · C, Data · 8 items - - - -FIELD + + + +FIELD COMMON: 11,684 bytes · C, Data · 7 items - - - + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + SCRIPT: 1,860 bytes · C · 3 items - - - + + + INTERPRETER_CONTROL.C · 0x08024c50: 30 bytes · C · 0x08024c50 - + OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 - + OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 - + OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 - + OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c - + OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 - + OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c - + OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 - + OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc - + OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 - + OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c - + OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 - + OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c - + OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 - + OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc - + OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 - + OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c - + OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 - + OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c - + OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 - + OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc - + OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 - + OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 - + OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 - + OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 - + OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c - + OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 - + OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 - + OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 - + OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc - + OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 - + OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 - + OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 - + OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 - + OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 - + OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c - + OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 - + OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 - + OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 - + SKIP_COMMAND.C · 0x08024ed4: 10 bytes · C · 0x08024ed4 - + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + GAME: 60 bytes · C · 1 items - - - + + + FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + + + +GRAPHICS CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + - -LIB: 10 bytes · C · 1 items - - - + +LIB: 114 bytes · C · 1 items + + + + +CURVE.C: 114 bytes · C · 4 items + + + CURVE.C · 0x0802d23c: 10 bytes · C · 0x0802d23c - + + + +CURVE.C · 0x0802d248: 32 bytes · C · 0x0802d248 + + + +CURVE.C · 0x0802d268: 32 bytes · C · 0x0802d268 + + + +CURVE.C · 0x0802d288: 40 bytes · C · 0x0802d288 + + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,273,988 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,529,078 bytes · Assembly - -main.s + +raw: 2,273,884 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,528,974 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE LOST AGE/INCLUDE/CURVE.H b/games/THE LOST AGE/INCLUDE/CURVE.H index d4aa1e3de7..c6c16fab84 100644 --- a/games/THE LOST AGE/INCLUDE/CURVE.H +++ b/games/THE LOST AGE/INCLUDE/CURVE.H @@ -9,4 +9,9 @@ enum { CURVE_FULL_STEPS = 16, }; +s32 Curve_GetFirstSampleA(const s8 *samples); +s32 Curve_LerpTwoSamples(const s8 *samples, s32 position); +s32 Curve_LerpTwoSamplesB(const s8 *samples, s32 unused, s32 position); +s32 Curve_StepAtSummedPosition(const s8 *samples, s32 start, s32 end); + #endif diff --git a/games/THE LOST AGE/SRC/LIB/CURVE.C b/games/THE LOST AGE/SRC/LIB/CURVE.C index 233d31b8eb..8c4d9030fd 100644 --- a/games/THE LOST AGE/SRC/LIB/CURVE.C +++ b/games/THE LOST AGE/SRC/LIB/CURVE.C @@ -4,3 +4,52 @@ s32 Curve_GetFirstSampleA(const s8 *samples) { return samples[0] << CURVE_VALUE_SHIFT; } + +s32 Curve_LerpTwoSamples(const s8 *samples, s32 position) +{ + s32 start; + s32 delta; + + start = samples[0] << CURVE_VALUE_SHIFT; + delta = ((samples[1] << CURVE_VALUE_SHIFT) - start) * position; + if (delta < 0) { + delta += CURVE_FULL_STEPS - 1; + } + return start + (delta >> 4); +} + +s32 Curve_LerpTwoSamplesB(const s8 *samples, s32 unused, s32 position) +{ + s32 base; + s32 offset; + + base = samples[0] << CURVE_VALUE_SHIFT; + offset = ((samples[1] << CURVE_VALUE_SHIFT) - base) * position; + if (offset < 0) { + offset += CURVE_FULL_STEPS - 1; + } + return base + (offset >> 4); +} + +s32 Curve_StepAtSummedPosition(const s8 *samples, s32 start, s32 end) +{ + s32 first; + s32 second; + s32 maximum; + u32 position; + + first = samples[0] << CURVE_VALUE_SHIFT; + second = samples[1] << CURVE_VALUE_SHIFT; + maximum = first; + if (second > first) { + maximum = second; + } + position = start + end; + if (position == CURVE_FULL_STEPS - 1) { + return maximum; + } + if (position < CURVE_FULL_STEPS - 1) { + second = first; + } + return second; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index 2b5761f94f..fa80149853 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -1446,6 +1446,21 @@ "address": "0x0802d23c", "extent": 10, "state": "exact-c" + }, + { + "address": "0x0802d248", + "extent": 32, + "state": "exact-c" + }, + { + "address": "0x0802d268", + "extent": 32, + "state": "exact-c" + }, + { + "address": "0x0802d288", + "extent": 40, + "state": "exact-c" } ], "overlay": null diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 9f6f7c2bac..71edb5b4a6 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -485,6 +485,15 @@ "main:0802d23c": { "name": "Curve_GetFirstSampleA", "source": "LIB/CURVE.C" + }, + "main:0802d248": { + "name": "Curve_LerpTwoSamples" + }, + "main:0802d268": { + "name": "Curve_LerpTwoSamplesB" + }, + "main:0802d288": { + "name": "Curve_StepAtSummedPosition" } } } From 1fd2728392320792bbae6f27caee5d5cabe68dae Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 15:55:26 +0100 Subject: [PATCH 7/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=20Script=5FClearByte54=20+?= =?UTF-8?q?=20Script=5FSetByte54=20on=20TLA=20(+36=20B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Never-drafted TLA script operand twins of the TBS Clear/SetByte54 owners are byte-exact (18 B each). Wired as tla-script-operands-clear-byte54 and tla-script-operands-set-byte54. Script_LoadMainScript bounced (symbol offset). --- README.md | 2 +- games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4278 +++++++++-------- games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H | 3 + .../COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C | 8 + .../FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C | 8 + .../THE LOST AGE/recon/translation-units.json | 32 + games/THE LOST AGE/source-paths.json | 8 + 7 files changed, 2203 insertions(+), 2136 deletions(-) create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C diff --git a/README.md b/README.md index 29b2f7349b..1e097daa66 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The two games share much of the same code, so Alchemy recovers them side by side ## Status: ☀️ 55.96% · ⚓️ 0.28% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index a6afb750da..0dbed82da2 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,8115 +26342,8123 @@ THE LOST AGE - -SRC: 14,194,560 bytes · C, Data · 7 items - - - + +SRC: 14,194,596 bytes · C, Data · 7 items + + + SRC BATTLE: 84 bytes · C · 1 items - - - + + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + - -FIELD: 712,656 bytes · C, Data · 8 items - - - -FIELD - -COMMON: 11,684 bytes · C, Data · 7 items - - - + +FIELD: 712,692 bytes · C, Data · 8 items + + + +FIELD + +COMMON: 11,720 bytes · C, Data · 7 items + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + - -SCRIPT: 1,860 bytes · C · 3 items - - - + +SCRIPT: 1,896 bytes · C · 5 items + + + INTERPRETER_CONTROL.C · 0x08024c50: 30 bytes · C · 0x08024c50 - + OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 - + OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 - + OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 - + OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c - + OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 - + OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c - + OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 - + OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc - + OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 - + OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c - + OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 - + OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c - + OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 - + OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc - + OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 - + OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c - + OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 - + OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c - + OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 - + OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc - + OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 - + OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 - + OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 - + OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 - + OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c - + OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 - + OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 - + OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 - + OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc - + OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 - + OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 - + OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 - + OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 - + OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 - + OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c - + OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 - + OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 - + OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 - + + +OPERANDS_CLEAR_BYTE54.C · 0x08023f14: 18 bytes · C · 0x08023f14 + + + +OPERANDS_SET_BYTE54.C · 0x08023f28: 18 bytes · C · 0x08023f28 + + SKIP_COMMAND.C · 0x08024ed4: 10 bytes · C · 0x08024ed4 - + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + GAME: 60 bytes · C · 1 items - - - + + + FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + + + +GRAPHICS CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + LIB: 114 bytes · C · 1 items - - - + + + CURVE.C: 114 bytes · C · 4 items - - - + + + CURVE.C · 0x0802d23c: 10 bytes · C · 0x0802d23c - + CURVE.C · 0x0802d248: 32 bytes · C · 0x0802d248 - + CURVE.C · 0x0802d268: 32 bytes · C · 0x0802d268 - + CURVE.C · 0x0802d288: 40 bytes · C · 0x0802d288 - + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,273,884 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,528,974 bytes · Assembly - -main.s + +raw: 2,273,848 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,528,938 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H b/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H index ac3272ae4c..5a6f844a90 100644 --- a/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H +++ b/games/THE LOST AGE/INCLUDE/SCRIPT_OPERANDS.H @@ -73,4 +73,7 @@ typedef char ScriptOperands_size[ #undef SCRIPT_OPERANDS_OFFSET +s32 Script_ClearByte54(struct ScriptOperands *work); +s32 Script_SetByte54(struct ScriptOperands *work); + #endif diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C new file mode 100644 index 0000000000..0fe23f6318 --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C @@ -0,0 +1,8 @@ +#include "SCRIPT_OPERANDS.H" + +s32 Script_ClearByte54(struct ScriptOperands *work) +{ + work->byte_54 = 0; + work->cursor++; + return 1; +} diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C new file mode 100644 index 0000000000..c649c83f35 --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C @@ -0,0 +1,8 @@ +#include "SCRIPT_OPERANDS.H" + +s32 Script_SetByte54(struct ScriptOperands *work) +{ + work->byte_54 = 1; + work->cursor++; + return 1; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index fa80149853..e0e682907d 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -1480,6 +1480,38 @@ } ], "overlay": null + }, + { + "id": "tla-script-operands-clear-byte54", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x08023f14", + "extent": 18, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-script-operands-set-byte54", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x08023f28", + "extent": 18, + "state": "exact-c" + } + ], + "overlay": null } ] } diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index 71edb5b4a6..bb58de78a6 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -494,6 +494,14 @@ }, "main:0802d288": { "name": "Curve_StepAtSummedPosition" + }, + "main:08023f14": { + "name": "Script_ClearByte54", + "source": "FIELD/COMMON/SCRIPT/OPERANDS_CLEAR_BYTE54.C" + }, + "main:08023f28": { + "name": "Script_SetByte54", + "source": "FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C" } } } From 45d99b443b042d74d8ed537e43f8880c525ed0f0 Mon Sep 17 00:00:00 2001 From: Pascal Pixel Date: Fri, 18 Sep 2026 16:36:11 +0100 Subject: [PATCH 8/8] =?UTF-8?q?=E2=98=80=EF=B8=8F=2056%=20=E2=9A=93?= =?UTF-8?q?=EF=B8=8F=200%=20=E2=80=93=20adopt=20six=20never-drafted=20TLA?= =?UTF-8?q?=20twins=20(+114=20B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Object_SetPositionAndResetMotion, Battle_SetRuntimeFlagBit0, Camera_StoreSceneParameters, Ui_CountIconTableEntries, Ui_CountSecondTableEntries, and Owner_GetRecordStride84 score byte-exact from TBS twins. Park EffectSlot_SetPosition and Resource_GetTableEntry as Stubborn. --- README.md | 2 +- TODO.md | 3 + games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG | 4330 +++++++++-------- games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG | 686 +-- games/THE LOST AGE/INCLUDE/OBJECT_RUNTIME.H | 25 + .../SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C | 9 + .../MOTION_SET_POSITION_AND_RESET_MOTION.C | 14 + .../SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C | 6 + .../GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C | 9 + .../SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C | 7 + .../WINDOW/COUNT_SECOND_TABLE_ENTRIES.C | 7 + .../THE LOST AGE/recon/translation-units.json | 119 + games/THE LOST AGE/source-paths.json | 24 + 13 files changed, 2812 insertions(+), 2429 deletions(-) create mode 100644 games/THE LOST AGE/INCLUDE/OBJECT_RUNTIME.H create mode 100644 games/THE LOST AGE/SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C create mode 100644 games/THE LOST AGE/SRC/FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C create mode 100644 games/THE LOST AGE/SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C create mode 100644 games/THE LOST AGE/SRC/GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C create mode 100644 games/THE LOST AGE/SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C create mode 100644 games/THE LOST AGE/SRC/GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C diff --git a/README.md b/README.md index 1e097daa66..57feb7e54a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The two games share much of the same code, so Alchemy recovers them side by side ## Status: ☀️ 55.96% · ⚓️ 0.28% -![ROM contents]() +![ROM contents]() **DONE** measures recovered code: byte-exact C and evidenced permanent assembly, divided by each game's audited executable bytes. ☀️ is The Broken diff --git a/TODO.md b/TODO.md index 76b634027f..7a89504546 100644 --- a/TODO.md +++ b/TODO.md @@ -15,6 +15,9 @@ with `make progress`; do not maintain a second score in this task list. exact inside a 10-minute window, park it under Stubborn and switch. ### Stubborn (hard-pass later) +- `main:080ebe94` EffectSlot_SetPosition (18 B) — 1 halfword off; bounce. +- `main:08013300` Resource_GetTableEntry (12 B) — instruction-selection wall; bounce. + - Prefer never-drafted TLA regions over near-miss halfword floors. diff --git a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG index 0dbed82da2..94252e42be 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TBS-EN-ROM.SVG @@ -26342,8123 +26342,8171 @@ THE LOST AGE - -SRC: 14,194,596 bytes · C, Data · 7 items - - - + +SRC: 14,194,710 bytes · C, Data · 7 items + + + SRC - -BATTLE: 84 bytes · C · 1 items - - - + +BATTLE: 100 bytes · C · 2 items + + + + +EVENT_QUEUE_SET_FLAG_BIT0.C · 0x081201b4: 16 bytes · C · 0x081201b4 + + EFFECT: 84 bytes · C · 1 items - - - + + + COUNTERS_RESET.C · 0x080caf70: 84 bytes · C · 0x080caf70 - + - -FIELD: 712,692 bytes · C, Data · 8 items - - - -FIELD - -COMMON: 11,720 bytes · C, Data · 7 items - - - + +FIELD: 712,718 bytes · C, Data · 8 items + + + +FIELD + +COMMON: 11,746 bytes · C, Data · 8 items + + + LOAD_TABLE.JSON · record-table · 0x0802f380: 3,984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0802f380 - + MAP.BIN: 984 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP.BIN · golden-sun-general-lz · 0x08a7955c: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7955c - + MAP.BIN · golden-sun-general-lz · 0x08a7956c: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7956c - + MAP.BIN · golden-sun-general-lz · 0x08a79868: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79868 - + MAP.BIN · golden-sun-general-lz · 0x08a7992c: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7992c - + MAP.JSON: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + MAP.JSON · typed-table · 0x08a7951c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7951c - + MAP.JSON · golden-sun-general-lz · 0x08a79564: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a79564 - + MAP_CHR.PNG: 1,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79948: 336 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79948 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79a98: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79a98 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79bd8: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79bd8 - + MAP_CHR.PNG · golden-sun-kind2-lz · 0x08a79d18: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a79d18 - + NAME_RULES.JSON · typed-table · 0x080ef4a4: 888 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080ef4a4 - + SCENE_TABLE.JSON · typed-table · 0x080f17a8: 2,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x080f17a8 - + + + +OBJECT: 26 bytes · C · 1 items + + + + +MOTION_SET_POSITION_AND_RESET_MOTION.C · 0x0802471c: 26 bytes · C · 0x0802471c + + SCRIPT: 1,896 bytes · C · 5 items - - - + + + INTERPRETER_CONTROL.C · 0x08024c50: 30 bytes · C · 0x08024c50 - + OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + OPERANDS.C · 0x08025b58: 42 bytes · C · 0x08025b58 - + OPERANDS.C · 0x08025b84: 48 bytes · C · 0x08025b84 - + OPERANDS.C · 0x08025be4: 40 bytes · C · 0x08025be4 - + OPERANDS.C · 0x08025c0c: 40 bytes · C · 0x08025c0c - + OPERANDS.C · 0x08025c34: 40 bytes · C · 0x08025c34 - + OPERANDS.C · 0x08025c8c: 40 bytes · C · 0x08025c8c - + OPERANDS.C · 0x08025cb4: 40 bytes · C · 0x08025cb4 - + OPERANDS.C · 0x08025cdc: 40 bytes · C · 0x08025cdc - + OPERANDS.C · 0x08025d04: 40 bytes · C · 0x08025d04 - + OPERANDS.C · 0x08025d2c: 40 bytes · C · 0x08025d2c - + OPERANDS.C · 0x08025d54: 40 bytes · C · 0x08025d54 - + OPERANDS.C · 0x08025d7c: 40 bytes · C · 0x08025d7c - + OPERANDS.C · 0x08025da4: 40 bytes · C · 0x08025da4 - + OPERANDS.C · 0x08025dcc: 40 bytes · C · 0x08025dcc - + OPERANDS.C · 0x08025df4: 40 bytes · C · 0x08025df4 - + OPERANDS.C · 0x08025e1c: 40 bytes · C · 0x08025e1c - + OPERANDS.C · 0x08025e44: 40 bytes · C · 0x08025e44 - + OPERANDS.C · 0x08025e6c: 40 bytes · C · 0x08025e6c - + OPERANDS.C · 0x08025e94: 40 bytes · C · 0x08025e94 - + OPERANDS.C · 0x08025ebc: 42 bytes · C · 0x08025ebc - + OPERANDS.C · 0x08025ee8: 58 bytes · C · 0x08025ee8 - + OPERANDS.C · 0x08025f24: 58 bytes · C · 0x08025f24 - + OPERANDS.C · 0x08025f60: 58 bytes · C · 0x08025f60 - + OPERANDS.C · 0x08025fd0: 58 bytes · C · 0x08025fd0 - + OPERANDS.C · 0x0802600c: 58 bytes · C · 0x0802600c - + OPERANDS.C · 0x08026048: 58 bytes · C · 0x08026048 - + OPERANDS.C · 0x08026084: 58 bytes · C · 0x08026084 - + OPERANDS.C · 0x080260c0: 58 bytes · C · 0x080260c0 - + OPERANDS.C · 0x080260fc: 60 bytes · C · 0x080260fc - + OPERANDS.C · 0x08026138: 60 bytes · C · 0x08026138 - + OPERANDS.C · 0x08026174: 60 bytes · C · 0x08026174 - + OPERANDS.C · 0x080261b0: 40 bytes · C · 0x080261b0 - + OPERANDS.C · 0x080261d8: 40 bytes · C · 0x080261d8 - + OPERANDS.C · 0x08026200: 58 bytes · C · 0x08026200 - + OPERANDS.C · 0x0802623c: 58 bytes · C · 0x0802623c - + OPERANDS.C · 0x08026278: 56 bytes · C · 0x08026278 - + OPERANDS.C · 0x080262b0: 56 bytes · C · 0x080262b0 - + OPERANDS.C · 0x080262e8: 56 bytes · C · 0x080262e8 - + OPERANDS_CLEAR_BYTE54.C · 0x08023f14: 18 bytes · C · 0x08023f14 - + OPERANDS_SET_BYTE54.C · 0x08023f28: 18 bytes · C · 0x08023f28 - + SKIP_COMMAND.C · 0x08024ed4: 10 bytes · C · 0x08024ed4 - + DAIRA_HEYA: 62,552 bytes · Data · 3 items - - - + + + DAIRA_HEYA.BIN: 14,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 12 items - - - + + + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abb9e4: 3,128 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9e4 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abc664: 6,580 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc664 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe018: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe018 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe190: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe190 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe2f8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe2f8 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08abe308: 112 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe308 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3348: 756 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3348 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3658: 2,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3658 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac3f1c: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3f1c - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4048: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4048 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac4228: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4228 - + DAIRA_HEYA.BIN · golden-sun-general-lz · 0x08ac423c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac423c - + DAIRA_HEYA.JSON: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_HEYA.JSON · typed-table · 0x08abb9a4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb9a4 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08abc61c: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abc61c - + DAIRA_HEYA.JSON · typed-table · 0x08ac3308: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac3308 - + DAIRA_HEYA.JSON · golden-sun-general-lz · 0x08ac363c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac363c - + DAIRA_HEYA_CHR.PNG: 47,924 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abe4f0: 6,268 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abe4f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08abfd6c: 4,788 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08abfd6c - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac1020: 4,248 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac1020 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac20b8: 4,688 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac20b8 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac43f0: 11,776 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac43f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac71f0: 6,068 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac71f0 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac89a4: 3,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac89a4 - + DAIRA_HEYA_CHR.PNG · golden-sun-kind2-lz · 0x08ac9940: 6,092 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ac9940 - + DAIRA_MURA: 56,568 bytes · Data · 3 items - - - + + + DAIRA_MURA.BIN: 19,260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aadb54: 6,016 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb54 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaf340: 3,180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf340 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aaffac: 556 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaffac - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab01d8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab01d8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab0360: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0360 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08ab95ec: 4,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ec - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08aba9bc: 3,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba9bc - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb5a4: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb5a4 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb7c8: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb7c8 - + DAIRA_MURA.BIN · golden-sun-general-lz · 0x08abb950: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abb950 - + DAIRA_MURA.JSON: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA.JSON · typed-table · 0x08aadb14: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aadb14 - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aaf2d4: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaf2d4 - + DAIRA_MURA.JSON · typed-table · 0x08ab95ac: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab95ac - + DAIRA_MURA.JSON · golden-sun-general-lz · 0x08aba954: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aba954 - + DAIRA_MURA_CHR.PNG: 36,968 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab0544: 11,076 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab0544 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab3088: 9,996 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab3088 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab5794: 10,564 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab5794 - + DAIRA_MURA_CHR.PNG · golden-sun-kind2-lz · 0x08ab80d8: 5,332 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08ab80d8 - + IDEJIMA: 20,384 bytes · Data · 3 items - - - + + + IDEJIMA.BIN: 5,752 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8ab4: 936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8ab4 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa8e78: 4,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e78 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aa9f14: 452 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa9f14 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa0d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa0d8 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa100: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa100 - + IDEJIMA.BIN · golden-sun-general-lz · 0x08aaa110: 56 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa110 - + IDEJIMA.JSON: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + IDEJIMA.JSON · typed-table · 0x08aa8a74: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8a74 - + IDEJIMA.JSON · golden-sun-general-lz · 0x08aa8e5c: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8e5c - + IDEJIMA_CHR.PNG: 14,540 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa248: 628 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa248 - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aaa4bc: 7,296 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa4bc - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aac13c: 4,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aac13c - + IDEJIMA_CHR.PNG · golden-sun-kind2-lz · 0x08aad234: 2,272 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aad234 - + SUHARA_GATE: 87,804 bytes · Data · 3 items - - - + + + SUHARA_GATE.BIN: 19,144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 18 items - - - + + + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9308c: 3,168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9308c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a93d58: 3,012 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93d58 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9491c: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9491c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ac4: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ac4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94ae4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94ae4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a94aec: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94aec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9e7d4: 2,604 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e7d4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9f250: 2,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f250 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9fdd8: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9fdd8 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffa0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffa0 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffb4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffb4 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08a9ffbc: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffbc - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa000c: 2,164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa000c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa08ac: 3,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa08ac - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa151c: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa151c - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa16ec: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa16ec - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1924: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1924 - + SUHARA_GATE.BIN · golden-sun-general-lz · 0x08aa1938: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1938 - + SUHARA_GATE.JSON: 424 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + SUHARA_GATE.JSON · typed-table · 0x08a9304c: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9304c - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a93cec: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a93cec - + SUHARA_GATE.JSON · typed-table · 0x08a9e794: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9e794 - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08a9f200: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9f200 - + SUHARA_GATE.JSON · typed-table · 0x08a9ffcc: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a9ffcc - + SUHARA_GATE.JSON · golden-sun-general-lz · 0x08aa0880: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa0880 - + SUHARA_GATE_CHR.PNG: 68,236 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 8 items - - - + + + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a94c70: 11,748 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a94c70 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a97a54: 10,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a97a54 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9a2fc: 10,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9a2fc - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08a9cc58: 6,972 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a9cc58 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa1b0c: 11,004 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1b0c - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa4608: 8,416 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa4608 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa66e8: 8,780 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa66e8 - + SUHARA_GATE_CHR.PNG · golden-sun-kind2-lz · 0x08aa8934: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08aa8934 - + VINASU_CHOJO: 39,704 bytes · Data · 3 items - - - + + + VINASU_CHOJO.BIN: 7,220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89404: 2,020 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89404 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a89bf8: 4,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89bf8 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ac50: 308 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ac50 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8ad84: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8ad84 - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b00c: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b00c - + VINASU_CHOJO.BIN · golden-sun-general-lz · 0x08a8b034: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b034 - + VINASU_CHOJO.JSON: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_CHOJO.JSON · typed-table · 0x08a893c4: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a893c4 - + VINASU_CHOJO.JSON · golden-sun-general-lz · 0x08a89be8: 16 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a89be8 - + VINASU_CHOJO_CHR.PNG: 32,404 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8b1b8: 10,344 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b1b8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a8da20: 10,184 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a8da20 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a901e8: 5,408 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a901e8 - + VINASU_CHOJO_CHR.PNG · golden-sun-kind2-lz · 0x08a91708: 6,468 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a91708 - + VINASU_IRIGUCHI: 31,452 bytes · Data · 3 items - - - + + + VINASU_IRIGUCHI.BIN: 17,864 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 6 items - - - + + + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a81820: 6,352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a81820 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a83104: 11,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a83104 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85c64: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85c64 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dc4: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dc4 - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dcc: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dcc - + VINASU_IRIGUCHI.BIN · golden-sun-general-lz · 0x08a85dd4: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dd4 - + VINASU_IRIGUCHI.JSON: 84 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + VINASU_IRIGUCHI.JSON · typed-table · 0x08a817e0: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a817e0 - + VINASU_IRIGUCHI.JSON · golden-sun-general-lz · 0x08a830f0: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a830f0 - + VINASU_IRIGUCHI_CHR.PNG: 13,504 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a85f04: 4,588 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a85f04 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a870f0: 7,304 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a870f0 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a88d78: 1,292 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a88d78 - + VINASU_IRIGUCHI_CHR.PNG · golden-sun-kind2-lz · 0x08a89284: 320 bytes · Images · Last asset build: ROM bytes matched; appearance not verified · 0x08a89284 - + WORLD_MAP: 402,508 bytes · Data · 2 items - - - + + + WORLD_MAP.BIN: 394,316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 1117 items - - - + + + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3748: 300 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3748 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3874: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3874 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3933: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3933 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f394f: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f394f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3967: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3967 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3986: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3999: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39ac: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f39bf: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f39bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3a99: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3b3a: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c08: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c31: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c44: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c57: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c79: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3c90: 151 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3c90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3d27: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3d27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3da2: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3da2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3dcd: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3dcd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3de9: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3de9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e0c: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e0c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e24: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e42: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3e55: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f3fd1: 428 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f3fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f417d: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f417d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4312: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4312 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f43b5: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f43b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f442f: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f442f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4542: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4542 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45c8: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45e1: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f45f4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f45f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4607: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4634: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f464f: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f464f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4680: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f46c0: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f46c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4725: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4725 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4755: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4755 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f494e: 634 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f494e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4bc8: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4bc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4cdb: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4cdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4d01: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4d01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4dcc: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4dcc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4f27: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4fe2: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f4ffb: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f4ffb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5010: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5010 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f503d: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f503d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5078: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5078 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50a9: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f50f0: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f50f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5142: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5183: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f51bf: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f51bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5336: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5336 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5464: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5464 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f54fc: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f54fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5525: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5546: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5546 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f555e: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f555e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5589: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5589 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f55e3: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f55e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5611: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5611 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f562d: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f562d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5680: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5680 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f56a6: 106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f56a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5710: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5710 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f574b: 79 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f574b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f579a: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f579a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57db: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f57fc: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f57fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f581a: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f581a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5836: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5836 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5854: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5854 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5868: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f587c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f587c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5890: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58a4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58cb: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58cb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f58e9: 65 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f58e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f592a: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f592a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5966: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5966 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5986: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59a4: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59b7: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59b7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59ca: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59dd: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f59f6: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f59f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a1a: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a41: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a41 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5a99: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5a99 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5aad: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ac1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ac1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ad5: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ad5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ae9: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b08: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b20: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b3a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5b74: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5b74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bb0: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5bee: 78 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5bee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c3c: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c3c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c61: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5c7c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5c7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5ca6: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5ca6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5cf0: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5cf0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5d80: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5d80 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dc0: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dc0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5dd3: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5dd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e06: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e06 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5e27: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5e27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f5efe: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f5efe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6033: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6033 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f60e2: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f60e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6180: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6180 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f61fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f61fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6214: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6214 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6231: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6231 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6245: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6245 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6259: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6259 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6277: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6277 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6291: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6291 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62ae: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62c2: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f62d6: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f62d6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6385: 281 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6385 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f649e: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f649e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6607: 316 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6743: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f67d8: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f67d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6800: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6800 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f682d: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f682d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6940: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6a67: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6acb: 69 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6acb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6b10: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6b10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bcb: 33 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6bec: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6bec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6c04: 755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6c04 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ef7: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ef7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f6ffa: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f6ffa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f72e4: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f72e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f73fa: 736 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f73fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f76da: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f76da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7812: 727 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7812 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7ae9: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c39: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c50: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7c70: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7c70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7cf3: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7cf3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7d5b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7d5b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e12: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7e98: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7e98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f7fa3: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f7fa3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f809c: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f809c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8205: 509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8205 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8402: 591 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8402 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8651: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f87a5: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f87a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f88d4: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f88d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f89d4: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f89d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8ac4: 465 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8ac4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8c95: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8c95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8d7f: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8d7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8e37: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8e37 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f2d: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f5a: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f8f95: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f8f95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f917e: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f917e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9236: 494 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9236 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9424: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f94e5: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f94e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f96cf: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f96cf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9785: 490 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f996f: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f996f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a26: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a40: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9a97: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9a97 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b3f: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9b7c: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9b7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9bf9: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9bf9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9d43: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9d43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088f9f82: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f9f82 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa01f: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa01f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa190: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa3e9: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa3e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa6a9: 696 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fa961: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fa961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fabef: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fabef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088facef: 75 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088facef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fad3a: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fad3a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fadd4: 134 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fadd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fae5a: 228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fae5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088faf3e: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088faf3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb021: 129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb021 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0a2: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0c0: 23 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb0d7: 706 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb0d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb399: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb399 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb502: 686 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb502 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb7b0: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb7b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb92f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb92f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb942: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb942 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb955: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb955 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb968: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb968 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb97b: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb97b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fb99f: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fb99f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba59: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fba88: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fba88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbbad: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fbe93: 774 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fbe93 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc199: 787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc4ac: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc4ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc5b6: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc5b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc6a9: 804 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc6a9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fc9cd: 763 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fc9cd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fccc8: 790 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fccc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fcfde: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fcfde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd2eb: 837 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd2eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd630: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd630 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd7d2: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd7d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd805: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd805 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd819: 87 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd819 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd870: 104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd8d8: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd8d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9a0: 95 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fd9ff: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fd9ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fda19: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fda19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdbff: 182 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdbff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdcb5: 486 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdcb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fde9b: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fde9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fdf4f: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fdf4f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe131: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe1d4: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe1d4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe230: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe230 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe24e: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe24e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe262: 49 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe262 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe293: 177 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe293 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe344: 185 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe3fd: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe3fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe6ee: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe6ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fe9c6: 688 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fe9c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fec76: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fec76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088fef68: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088fef68 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff082: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff082 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff322: 830 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff660: 825 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ff999: 695 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ff999 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffc50: 683 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x088ffefb: 817 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088ffefb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890022c: 599 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890022c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900483: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900497: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900497 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900515: 460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900515 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089006e1: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089006e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900700: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900700 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089007c7: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089007c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900841: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900841 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890085b: 598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890085b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900ab1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900ab1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900d39: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900d39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08900eec: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08900eec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010ca: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010ca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010e4: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089010fe: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089010fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901118: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901132: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901132 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890114a: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890114a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089011a0: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089011a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890123d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890123d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089012aa: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089012aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890147f: 606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890147f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089016dd: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089016dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890197f: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890197f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901b57: 561 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901b57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08901d88: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08901d88 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089020bd: 658 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089020bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890234f: 770 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890234f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902651: 626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902651 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089028c3: 493 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089028c3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902ab0: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902ab0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902c56: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902c56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902de6: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902de6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902e09: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902e09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08902f42: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08902f42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890303a: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890303a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890306c: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890306c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903136: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903136 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031ab: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089031c5: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089031c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890332f: 694 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890332f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089035e5: 687 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089035e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903894: 674 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903894 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903b36: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903b36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c3f: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c64: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c77: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903c8a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903c8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903ca7: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903ca7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903d85: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903d85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e17: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903e55: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08903f30: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08903f30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890409e: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890409e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890426c: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890426c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890452d: 764 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890452d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904829: 753 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904829 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904b1a: 729 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904df3: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904df3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f1e: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08904f67: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08904f67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890508b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890508b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905157: 303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905157 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905286: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905286 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052e3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089052f7: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089052f7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905395: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905395 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890547e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890547e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905498: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905498 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089054b2: 444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089054b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890566e: 814 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890566e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890599c: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890599c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905b54: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905b54 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905e55: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f5d: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f5d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08905f8b: 257 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08905f8b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890608c: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890608c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890612b: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890612b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890613f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890613f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906171: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890624f: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890624f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089062b8: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089062b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890632e: 617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890632e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906597: 781 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089068a4: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089068a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906b1b: 708 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906b1b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08906ddf: 704 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08906ddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890709f: 479 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890709f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890727e: 673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890727e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890751f: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890751f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089075e7: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089075e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890760f: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890760f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907623: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907623 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089076ff: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089076ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907875: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907875 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089078f2: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089078f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907a73: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907a73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907aaf: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907aaf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b2e: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907b95: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907b95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907baf: 654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907baf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e3d: 24 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907e55: 290 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907e55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08907f77: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08907f77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080ad: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080ad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080c0: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089080df: 88 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089080df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908137: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908137 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908183: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908183 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089081a8: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089081a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890826f: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890826f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082a1: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089082f4: 705 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089082f4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089085b5: 769 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089085b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089088b6: 772 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089088b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908bba: 653 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908bba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08908e47: 827 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08908e47 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909182: 848 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909182 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089094d2: 534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089094d2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089096e8: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089096e8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909867: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909867 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089098b1: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089098b1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089099a7: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089099a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a44: 35 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a44 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909a67: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909a67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909aad: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b1a: 63 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909b59: 198 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909b59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c1f: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909c9e: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909c9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cb8: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909cd3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909cd3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909ce7: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909ce7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909db2: 86 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909db2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e08: 99 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e08 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08909e6b: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08909e6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a01e: 808 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a01e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a346: 722 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a346 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a618: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a618 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890a78a: 738 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890a78a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890aa6c: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890aa6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ad73: 746 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ad73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b05d: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b05d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b364: 139 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b364 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b3ef: 77 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b3ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b43c: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b43c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b469: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b469 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b47d: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b47d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b491: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b491 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b4a5: 463 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b4a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b674: 592 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b674 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8c4: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8c4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8df: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b8f9: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b925: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b925 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b940: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b940 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890b954: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890b954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba2b: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba2b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ba9e: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ba9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890babb: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890babb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bb35: 402 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bb35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bcc7: 615 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bcc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890bf2e: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890bf2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c034: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c034 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c32c: 795 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c32c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c647: 793 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c647 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890c960: 762 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890c960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cc5a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cd2d: 157 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cd2d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cdca: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cdca - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce4e: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce70: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce70 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce84: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ce98: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ce98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890cfc8: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890cfc8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0e0: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d0fa: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d0fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d114: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d114 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d131: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d14c: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d14c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d160: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d1bd: 229 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d1bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2a2: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d2fe: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d2fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d31a: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d33e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d33e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d3df: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d3df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d46d: 680 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d46d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890d715: 748 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890d715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890da01: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890da01 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890dd31: 768 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890dd31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e031: 660 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e031 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e2c5: 618 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e2c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e52f: 575 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e52f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e76e: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e76e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890e956: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890e956 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb29: 76 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eb75: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eb75 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ec10: 179 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ec10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecc3: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecc3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecd7: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecd7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ecf1: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ecf1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed29: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed3d: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ed57: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ed57 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890eedf: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890eedf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f0a7: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f0a7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f171: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f171 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f18e: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f18e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f1c5: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f1c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f260: 754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f260 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f552: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f552 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f6a3: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f6a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890f7e4: 639 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890f7e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fa63: 744 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fa63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890fd4b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890fd4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0890ff1e: 578 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0890ff1e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910160: 775 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910467: 780 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910773: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910773 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910865: 158 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910865 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910903: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910903 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910921: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910921 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910946: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910946 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891096d: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891096d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910988: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910988 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891099c: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891099c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089109b6: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089109b6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910a43: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910a43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910aec: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910aec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b87: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910b9b: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910b9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910bce: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910bce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910c17: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910c17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910d4e: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910d4e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910dfe: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910dfe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08910ea6: 642 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08910ea6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911128: 726 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911128 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089113fe: 685 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089113fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089116ab: 716 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089116ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911977: 749 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911977 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911c64: 732 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911c64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08911f40: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08911f40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891201c: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891201c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912083: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912083 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120e1: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089120f5: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089120f5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912123: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912123 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912142: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912142 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891215e: 25 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891215e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912177: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912177 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891218b: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891218b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089122b3: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089122b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912383: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912383 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089123dc: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089123dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912408: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912492: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912492 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089125f8: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089125f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891277f: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891277f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912870: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912a39: 681 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912a39 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912ce2: 609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912ce2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08912f43: 630 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08912f43 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089131b9: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089131b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913386: 168 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913386 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891342e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891342e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913449: 194 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913449 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891350b: 38 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891350b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913531: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913531 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913560: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913560 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913587: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913587 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135a1: 68 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089135e5: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089135e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891360d: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891360d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891369d: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891369d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089137d0: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089137d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891392b: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891392b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913ac6: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913ac6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913cd1: 648 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913cd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08913f59: 589 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08913f59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089141a6: 543 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089141a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089143c5: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089143c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089145ae: 542 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089145ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089147cc: 548 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089147cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089149f0: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089149f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914bcb: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914bcb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914d19: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914d19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e5e: 64 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e5e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914e9e: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914e9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914f92: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914f92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fae: 54 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08914fe4: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08914fe4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891500b: 26 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891500b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915025: 51 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915025 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915058: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915058 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915073: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915131: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915131 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089151c7: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089151c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152aa: 61 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089152e7: 71 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089152e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891532e: 163 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891532e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089153d1: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089153d1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915544: 415 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915544 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089156e3: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089156e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089158bf: 380 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089158bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915a3b: 495 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915a3b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915c2a: 315 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915c2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915d65: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915d65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915e45: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915e45 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915f03: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915f03 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fa4: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915fb8: 59 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915fb8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08915ff3: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08915ff3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891601a: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891601a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891615c: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891615c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089162ea: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089162ea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163bf: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089163dd: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089163dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916408: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916408 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916424: 30 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916424 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916442: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916442 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916455: 62 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916455 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916493: 89 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916493 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089164ec: 20 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089164ec - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916500: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916529: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916529 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891655b: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891655b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891656e: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891656e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916581: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916581 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916597: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916597 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165c6: 37 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165c6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089165eb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089165eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916613: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916613 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916641: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916660: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916660 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916673: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916673 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916686: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916686 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166a2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166b5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166b5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166c8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166c8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166db: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166db - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089166ee: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089166ee - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916701: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916701 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916714: 32 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916714 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916734: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916734 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916747: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916747 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891675a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891675a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891676d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891676d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916780: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916780 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891679f: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891679f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167b2: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167c5: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167d8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167eb: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167eb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089167fe: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089167fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916811: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916811 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916824: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916837: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891684a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891684a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891685d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891685d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916870: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916870 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916883: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916883 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916896: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916896 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168b8: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089168da: 48 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089168da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891690a: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891690a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891691d: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891691d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916930: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916930 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891695e: 36 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891695e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916982: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916982 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916995: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916995 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169a8: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169bb: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169e3: 19 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089169f6: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089169f6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a20: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a5a: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916a77: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916a77 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916b5a: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916b5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916bfb: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916bfb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916c67: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916c67 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916d31: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916d31 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e07: 21 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e07 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e1c: 22 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916e32: 131 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916e32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916eb5: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916eb5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08916efd: 395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08916efd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917088: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917088 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917266: 489 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917266 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891744f: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891744f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089174d3: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089174d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917574: 230 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917574 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891765a: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891765a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089176d8: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089176d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089178e4: 621 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089178e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917b51: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917b51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917cd4: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917cd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917d83: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917d83 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917e89: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917e89 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08917f1d: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08917f1d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891801d: 323 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891801d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918160: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918160 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089181dd: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089181dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891827e: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891827e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891830a: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891830a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918344: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918344 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918410: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918410 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918500: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918500 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089185bc: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089185bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918670: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918670 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089186e5: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089186e5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089187bc: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089187bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918890: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918890 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918950: 213 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918950 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918a25: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918a25 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918afd: 66 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918afd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b3f: 70 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918b85: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918ba7: 105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918ba7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c10: 45 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918c3d: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918c3d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918d28: 332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918d28 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918e74: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918e74 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08918f50: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08918f50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919074: 331 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919074 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089191bf: 124 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089191bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891923b: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891923b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089192b0: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089192b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891932b: 122 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891932b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089193a5: 114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089193a5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919417: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919417 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919483: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919483 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891951d: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891951d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919682: 147 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919682 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919715: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919715 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891980c: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891980c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198bb: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198bb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089198ef: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089198ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891999e: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891999e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919aa8: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919aa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919b58: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919b58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919c1c: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919c1c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919d3f: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919d3f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e19: 29 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e19 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919e36: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919e36 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08919fbd: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08919fbd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a09d: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a09d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a21a: 262 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a21a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a320: 379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a320 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a49b: 263 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a49b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a5a2: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a5a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a716: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a716 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a826: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a826 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a8b2: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a8b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891a9df: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891a9df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ab26: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ab26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891acdd: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891acdd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ae61: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ae61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891af7f: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891af7f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b06c: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b06c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b143: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b143 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b2c7: 288 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b2c7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b3e7: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b3e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b4a6: 127 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b4a6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b525: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b525 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b641: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b641 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b743: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b743 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b820: 216 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b820 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b8f8: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b8f8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891b9d5: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891b9d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bb6d: 109 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bb6d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bbda: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bbda - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bc64: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bc64 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bccb: 133 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bccb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bd50: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bd50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bdc9: 130 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bdc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891be4b: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891be4b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891beb7: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891beb7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bf34: 119 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bf34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfab: 28 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891bfc7: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891bfc7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c0dc: 252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c0dc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c1d8: 214 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c1d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c2ae: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c2ae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c39d: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c39d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c490: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c490 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c5d7: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c5d7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c6b0: 212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c6b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c784: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891c8ef: 498 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891c8ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cae1: 458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cae1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ccab: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ccab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ce51: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ce51 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cf63: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cf63 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891cfdb: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891cfdb - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d0a0: 184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d0a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d158: 235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d158 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d243: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d243 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d3c0: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d3c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d4de: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d4de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d559: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d559 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d6c1: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d6c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d7c9: 349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d7c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891d926: 271 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891d926 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da35: 55 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da6c: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891da96: 18 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891da96 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891daa8: 47 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891daa8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dad7: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dad7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dc50: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dc50 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891dd2a: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891dd2a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891de13: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891de13 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891df90: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891df90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e16e: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e16e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e343: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e343 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e443: 246 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e443 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e539: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e539 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e737: 517 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e737 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891e93c: 516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891e93c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891eb40: 514 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891eb40 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ed42: 499 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ed42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ef35: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ef35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f0b8: 141 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f0b8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f145: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f145 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f20e: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f20e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f298: 110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f298 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f306: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f306 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f3c9: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f3c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f4aa: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f4aa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f522: 118 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f522 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f598: 115 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f598 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f60b: 121 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f60b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f684: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f684 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f794: 207 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f794 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f863: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f928: 58 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f928 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891f962: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891f962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fa26: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fa26 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fb65: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fb65 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fc1a: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fc1a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891fddf: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891fddf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0891ff9f: 423 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0891ff9f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920146: 478 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920146 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920324: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920324 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920421: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920421 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089205b9: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089205b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920784: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920784 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920964: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920964 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920afc: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920afc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920cc9: 525 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920cc9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08920ed6: 413 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08920ed6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921073: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921073 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921118: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921118 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089211c1: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089211c1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892129b: 135 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892129b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921322: 167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921322 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089213c9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089213c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089214ef: 39 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089214ef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921516: 186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921516 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089215d0: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089215d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921698: 101 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921698 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089216fd: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089216fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921844: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921844 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089219ab: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089219ab - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921b8f: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921b8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921c61: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921c61 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921d87: 310 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921d87 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921ebd: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921ebd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08921f7b: 275 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08921f7b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892208e: 400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892208e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892221e: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892221e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922370: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922370 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089224a2: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089224a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922640: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922640 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089227d5: 343 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089227d5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892292c: 445 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892292c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922ae9: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922ae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922c30: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922c30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922d55: 325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922d55 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922e9a: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922e9a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08922fc2: 173 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08922fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892306f: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892306f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892310a: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892310a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923199: 138 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923199 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923223: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923223 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089232e3: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089232e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089233fd: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089233fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923429: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923429 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923508: 502 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923508 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089236fe: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089236fe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892386f: 451 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892386f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923a32: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923a32 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923b91: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923b91 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923bed: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923bed - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923cef: 438 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923cef - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923ea5: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923ea5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08923f9d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08923f9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924051: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924051 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892411f: 249 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892411f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924218: 231 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924218 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089242ff: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089242ff - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892449a: 505 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892449a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924693: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924693 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924837: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924837 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089249f2: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089249f2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924b17: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924b17 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924bf8: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924bf8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924cea: 199 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924cea - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924db1: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924db1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924e94: 154 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924f2e: 166 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924f2e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08924fd4: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08924fd4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892506c: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892506c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089251a1: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089251a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925251: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925251 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892537c: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892537c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892551a: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892551a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089256b0: 435 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089256b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925863: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925863 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925960: 31 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925960 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892597f: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892597f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a14: 126 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a14 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925a92: 196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925a92 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925b56: 367 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925b56 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925cc5: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925cc5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925d8a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925d8a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925e4d: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925e4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08925fc4: 507 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08925fc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089261bf: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089261bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089262e2: 389 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089262e2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926467: 461 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926467 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926634: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926634 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926759: 416 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926759 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089268f9: 274 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089268f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926a0b: 183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926a0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926ac2: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926ac2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926b94: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926b94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926cae: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926cae - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926da0: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926da0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e15: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e15 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926e9d: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926e9d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926f35: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926f35 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08926fd1: 265 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08926fd1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089270da: 394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089270da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927264: 90 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927264 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089272be: 103 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089272be - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927325: 43 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927325 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927350: 108 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927350 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089273bc: 73 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089273bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927405: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927405 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089274d0: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089274d0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927645: 191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927645 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927704: 159 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927704 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089277a3: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089277a3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927954: 384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927954 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927ad4: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927ad4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927c79: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927c79 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927e12: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927e12 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08927fe2: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08927fe2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892816a: 272 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892816a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892827a: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892827a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928384: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928384 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928466: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928466 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892855a: 222 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892855a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928638: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928638 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089286ce: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089286ce - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928760: 83 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928760 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089287b3: 156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089287b3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892884f: 125 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892884f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089288cc: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089288cc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a0e: 27 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928a29: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928a29 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928aad: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928aad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928c1f: 239 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928c1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928d0e: 238 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928d0e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928dfc: 299 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928dfc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08928f27: 414 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08928f27 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089290c5: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089290c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892923f: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892923f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892933c: 511 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892933c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892953b: 427 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892953b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089296e6: 513 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089296e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089298e7: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089298e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929abf: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929abf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929b84: 190 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929b84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929c42: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929c42 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929d22: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929d22 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929dfd: 219 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929dfd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929ed8: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929ed8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08929fb2: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08929fb2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a09f: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a09f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a248: 150 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a248 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a2de: 169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a2de - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a387: 383 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a387 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a506: 247 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a506 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a5fd: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a5fd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a6e6: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a6e6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a7d3: 313 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a7d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892a90c: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892a90c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aa8f: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aa8f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ab6b: 467 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ab6b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ad3e: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ad3e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892aefe: 481 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892aefe - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b0df: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b0df - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b28d: 200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b28d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b355: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b355 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b41a: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b41a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b4dd: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b4dd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b57d: 180 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b57d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b631: 201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b631 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b6fa: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b6fa - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b824: 388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b824 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9a8: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9a8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892b9e4: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892b9e4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bae9: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bae9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bc5a: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bc5a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bd59: 244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bd59 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892be4d: 251 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892be4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892bf48: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892bf48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c03a: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c03a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c10d: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c10d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c2bd: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c2bd - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c488: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c488 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c60f: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c60f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c785: 397 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c785 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892c912: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892c912 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ca73: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ca73 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cc0b: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cc0b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cd7c: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cd7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cea4: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cea4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892cf71: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892cf71 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d0b0: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d0b0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d213: 143 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d213 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d2a2: 412 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d2a2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d43e: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d43e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d5bf: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d5bf - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d6e0: 248 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d7d8: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d7d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d8c5: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d8c5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892d986: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892d986 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dac5: 232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dac5 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dbad: 181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dbad - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dc62: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dc62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dddc: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dddc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892dfa4: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892dfa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e0c0: 208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e0c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e190: 454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e190 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e356: 539 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e356 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e571: 269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e571 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e67e: 355 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e67e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e7e1: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e7e1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e893: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e893 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892e8f9: 294 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892e8f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ea1f: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ea1f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892eb7a: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892eb7a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ec9e: 242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ec9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ed90: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ed90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ee9b: 178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ee9b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892ef4d: 215 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892ef4d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f024: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f024 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f0d3: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f0d3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f1b2: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f1b2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f31a: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f31a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f4af: 421 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f4af - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f654: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892f80b: 510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892f80b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fa09: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fa09 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fbba: 218 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fbba - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fc94: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fc94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fd84: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fd84 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892feac: 74 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892feac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0892fef6: 405 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0892fef6 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893008b: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893008b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089301a1: 237 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089301a1 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893028e: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893028e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893038d: 172 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893038d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930439: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930439 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089304f9: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089304f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089305e9: 195 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089305e9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089306ac: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089306ac - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089307e3: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089307e3 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089308f9: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089308f9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930a53: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930a53 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930b85: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930b85 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930ca9: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930ca9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930d69: 223 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930d69 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930e48: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930e48 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08930fc2: 206 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08930fc2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931090: 202 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931090 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893115a: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893115a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089311c0: 102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089311c0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931226: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931226 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089312b4: 165 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089312b4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931359: 385 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931359 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089314da: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089314da - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931607: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931607 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893173a: 302 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893173a - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931868: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931868 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931962: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931962 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931a76: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931a76 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931b62: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931b62 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931c23: 234 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931c23 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931d0d: 209 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931d0d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931dde: 448 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931dde - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08931f9e: 161 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08931f9e - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893203f: 44 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893203f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893206b: 94 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893206b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089320c9: 82 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089320c9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893211b: 204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893211b - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089321e7: 210 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089321e7 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089322b9: 259 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089322b9 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089323bc: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089323bc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932451: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932451 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932541: 236 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932541 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893262d: 149 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893262d - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089326c2: 221 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089326c2 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893279f: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893279f - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893290c: 85 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893290c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932961: 203 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932961 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932a2c: 346 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932a2c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932b86: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932b86 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d20: 117 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932d95: 123 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932d95 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932e10: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932e10 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932f18: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932f18 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08932fb0: 37,828 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08932fb0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c374: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c374 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c39c: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c39c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c58c: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c58c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893c6e0: 1,208 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893c6e0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893cb98: 5,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893cb98 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893e304: 5,432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893e304 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0893f83c: 3,536 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0893f83c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894060c: 4,228 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894060c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08941690: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08941690 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08942864: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08942864 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089437a4: 472 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089437a4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894397c: 484 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894397c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943b60: 960 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943b60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08943f20: 5,560 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08943f20 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089454d8: 4,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089454d8 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894659c: 2,568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894659c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08946fa4: 3,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08946fa4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08947b5c: 4,564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08947b5c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08948d30: 3,988 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08948d30 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949cc4: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949cc4 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e94: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e94 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08949e9c: 1,120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08949e9c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894a2fc: 5,620 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894a2fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894b8f0: 5,232 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894b8f0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894cd60: 2,292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894cd60 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894d654: 2,344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894d654 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894df7c: 3,824 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894df7c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894ee6c: 3,052 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894ee6c - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fa58: 476 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fa58 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fc34: 496 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fc34 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x0894fe24: 728 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0894fe24 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089500fc: 2,200 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089500fc - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08950994: 5,372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08950994 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08951e90: 3,904 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08951e90 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08952dd0: 1,488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08952dd0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x089533a0: 1,184 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089533a0 - + WORLD_MAP.BIN · golden-sun-general-lz · 0x08953840: 852 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953840 - + -WORLD_MAP.BIN +WORLD_MAP.BIN WORLD_MAP.JSON · typed-table · 0x088f1748: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088f1748 - + + + + +GAME: 76 bytes · C · 2 items + + + + +CHARACTER: 16 bytes · C · 1 items + + + + +GET_RECORD_STRIDE84.C · 0x080b0288: 16 bytes · C · 0x080b0288 + - -GAME: 60 bytes · C · 1 items - - - FLAGS: 60 bytes · C · 3 items - - - + + + GET_BYTE.C · 0x08016d5c: 16 bytes · C · 0x08016d5c - + GET_NIBBLE.C · 0x08016db4: 28 bytes · C · 0x08016db4 - + SET_BYTE.C · 0x08016d6c: 16 bytes · C · 0x08016d6c - + - -GRAPHICS: 624,662 bytes · Data · 2 items - - - -GRAPHICS + +GRAPHICS: 624,718 bytes · C, Data · 5 items + + + +GRAPHICS + +CAMERA_STORE_SCENE_PARAMETERS.C · 0x08015768: 16 bytes · C · 0x08015768 + + CHARACTER: 621,310 bytes · Data · 8 items - - - + + + AREKUSU.JSON: 13,755 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + AREKUSU.JSON · pointer-table · 0x08309fec: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309fec - + AREKUSU.JSON · components · 0x083daacb: 13,567 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083daacb - + CATALOG.JSON: 95,358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 30 items - - - + + + CATALOG.JSON · typed-table · 0x08300000: 29,816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08300000 - + CATALOG.JSON · typed-table · 0x083077d4: 1,000 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083077d4 - + CATALOG.JSON · typed-table · 0x0830821c: 944 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830821c - + CATALOG.JSON · typed-table · 0x083086f0: 432 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083086f0 - + CATALOG.JSON · typed-table · 0x083089c8: 576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083089c8 - + CATALOG.JSON · typed-table · 0x08308c44: 304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c44 - + CATALOG.JSON · typed-table · 0x08308e00: 4,400 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308e00 - + CATALOG.JSON · typed-table · 0x0830a0a8: 2,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a0a8 - + CATALOG.JSON · typed-table · 0x0830ab00: 1,856 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ab00 - + CATALOG.JSON · typed-table · 0x0830b310: 1,636 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b310 - + CATALOG.JSON · typed-table · 0x0830bb00: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb00 - + CATALOG.JSON · typed-table · 0x0830be44: 1,576 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830be44 - + CATALOG.JSON · typed-table · 0x0830c4f4: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c4f4 - + CATALOG.JSON · typed-table · 0x0830c878: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c878 - + CATALOG.JSON · typed-table · 0x0830ca7c: 192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca7c - + CATALOG.JSON · typed-table · 0x0830cb78: 120 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb78 - + CATALOG.JSON · typed-table · 0x0830cc68: 3,320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc68 - + CATALOG.JSON · typed-table · 0x0830d9f4: 1,068 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d9f4 - + CATALOG.JSON · typed-table · 0x0830deb8: 3,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830deb8 - + CATALOG.JSON · typed-table · 0x0830ebc8: 564 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ebc8 - + CATALOG.JSON · typed-table · 0x0830ef34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ef34 - + CATALOG.JSON · typed-table · 0x0830f040: 672 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f040 - + CATALOG.JSON · typed-table · 0x0830f384: 3,244 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f384 - + CATALOG.JSON · typed-table · 0x08310038: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310038 - + CATALOG.JSON · typed-table · 0x0831015c: 1,600 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831015c - + CATALOG.JSON · typed-table · 0x083107a0: 1,668 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083107a0 - + CATALOG.JSON · typed-table · 0x08310e74: 320 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e74 - + CATALOG.JSON · typed-table · 0x08311004: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311004 - + CATALOG.JSON · typed-table · 0x08311144: 3,156 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311144 - + CATALOG.JSON · typed-table · 0x08311d98: 29,582 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08311d98 - + COMMON.JSON: 252,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 72 items - - - + + + COMMON.JSON · pointer-table · 0x083085cc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083085cc - + COMMON.JSON · pointer-table · 0x08308664: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308664 - + COMMON.JSON · pointer-table · 0x083088a0: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083088a0 - + COMMON.JSON · pointer-table · 0x08308928: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308928 - + COMMON.JSON · pointer-table · 0x08308c08: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308c08 - + COMMON.JSON · pointer-table · 0x08308d74: 140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08308d74 - + COMMON.JSON · pointer-table · 0x0830a974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a974 - + COMMON.JSON · pointer-table · 0x0830a9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830a9f8 - + COMMON.JSON · pointer-table · 0x0830aa7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830aa7c - + COMMON.JSON · pointer-table · 0x0830b240: 72 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b240 - + COMMON.JSON · pointer-table · 0x0830b288: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b288 - + COMMON.JSON · pointer-table · 0x0830b974: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b974 - + COMMON.JSON · pointer-table · 0x0830b9f8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830b9f8 - + COMMON.JSON · pointer-table · 0x0830ba7c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ba7c - + COMMON.JSON · pointer-table · 0x0830bb84: 176 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bb84 - + COMMON.JSON · pointer-table · 0x0830bc34: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bc34 - + COMMON.JSON · pointer-table · 0x0830bcb8: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bcb8 - + COMMON.JSON · pointer-table · 0x0830bd3c: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bd3c - + COMMON.JSON · pointer-table · 0x0830bdc0: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830bdc0 - + COMMON.JSON · pointer-table · 0x0830c46c: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c46c - + COMMON.JSON · pointer-table · 0x0830c764: 144 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c764 - + COMMON.JSON · pointer-table · 0x0830c7f4: 132 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830c7f4 - + COMMON.JSON · pointer-table · 0x0830ca40: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ca40 - + COMMON.JSON · pointer-table · 0x0830cb3c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cb3c - + COMMON.JSON · pointer-table · 0x0830cbf0: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cbf0 - + COMMON.JSON · pointer-table · 0x0830cc2c: 60 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830cc2c - + COMMON.JSON · pointer-table · 0x0830d960: 148 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830d960 - + COMMON.JSON · pointer-table · 0x0830de20: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830de20 - + COMMON.JSON · pointer-table · 0x0830eb30: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830eb30 - + COMMON.JSON · pointer-table · 0x0830edfc: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830edfc - + COMMON.JSON · pointer-table · 0x0830ee94: 160 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830ee94 - + COMMON.JSON · pointer-table · 0x0830efb8: 136 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830efb8 - + COMMON.JSON · pointer-table · 0x0830f2e0: 164 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0830f2e0 - + COMMON.JSON · pointer-table · 0x08310030: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310030 - + COMMON.JSON · pointer-table · 0x08310154: 8 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310154 - + COMMON.JSON · pointer-table · 0x0831079c: 4 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0831079c - + COMMON.JSON · components · 0x0836d157: 7,469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836d157 - + COMMON.JSON · components · 0x0836ee84: 6,810 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0836ee84 - + COMMON.JSON · components · 0x08376e22: 7,314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08376e22 - + COMMON.JSON · components · 0x08378ab4: 10,853 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08378ab4 - + COMMON.JSON · components · 0x083864ad: 3,093 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083864ad - + COMMON.JSON · components · 0x0838bff7: 10,261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0838bff7 - + COMMON.JSON · components · 0x08402a4d: 7,965 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08402a4d - + COMMON.JSON · components · 0x0840496a: 6,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840496a - + COMMON.JSON · components · 0x0840612d: 7,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0840612d - + COMMON.JSON · components · 0x08422c71: 2,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08422c71 - + COMMON.JSON · components · 0x084235ad: 8,102 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084235ad - + COMMON.JSON · components · 0x08433a6b: 7,792 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08433a6b - + COMMON.JSON · components · 0x084358db: 8,034 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084358db - + COMMON.JSON · components · 0x0843783d: 7,532 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843783d - + COMMON.JSON · components · 0x0843b7fa: 8,485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843b7fa - + COMMON.JSON · components · 0x0843d91f: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843d91f - + COMMON.JSON · components · 0x0843f83e: 8,048 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0843f83e - + COMMON.JSON · components · 0x084417ae: 8,340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084417ae - + COMMON.JSON · components · 0x08443842: 8,347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08443842 - + COMMON.JSON · components · 0x0845b7b3: 8,510 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0845b7b3 - + COMMON.JSON · components · 0x084665b9: 8,253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084665b9 - + COMMON.JSON · components · 0x084685f6: 7,967 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084685f6 - + COMMON.JSON · components · 0x0846fe07: 2,791 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0846fe07 - + COMMON.JSON · components · 0x08473411: 2,682 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08473411 - + COMMON.JSON · components · 0x084754e9: 2,031 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084754e9 - + COMMON.JSON · components · 0x08475cd8: 2,266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08475cd8 - + COMMON.JSON · components · 0x084ad59f: 8,841 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ad59f - + COMMON.JSON · components · 0x084bc6b6: 8,394 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084bc6b6 - + COMMON.JSON · components · 0x084ed7d5: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084ed7d5 - + COMMON.JSON · components · 0x084f8152: 8,952 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084f8152 - + COMMON.JSON · components · 0x084fa44a: 9,212 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fa44a - + COMMON.JSON · components · 0x084fe890: 9,364 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x084fe890 - + COMMON.JSON · components · 0x0850b57a: 13,454 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0850b57a - + COMMON.JSON · components · 0x0854c328: 1,304 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0854c328 - + COMMON.JSON · components · 0x08553311: 946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08553311 - + COMMON.JSON · components · 0x0857881c: 1,250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0857881c - + -COMMON.JSON +COMMON.JSON GARUSHIA.JSON: 92,045 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + GARUSHIA.JSON · pointer-table · 0x08307bbc: 816 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307bbc - + GARUSHIA.JSON · pointer-table · 0x08310e24: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310e24 - + GARUSHIA.JSON · components · 0x08337d72: 67,754 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08337d72 - + GARUSHIA.JSON · components · 0x085a93f8: 23,395 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085a93f8 - + JASUMIN.JSON: 56,885 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + JASUMIN.JSON · pointer-table · 0x08307eec: 524 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307eec - + JASUMIN.JSON · pointer-table · 0x08310fb4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08310fb4 - + JASUMIN.JSON · components · 0x0834861c: 36,335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0834861c - + JASUMIN.JSON · components · 0x085b4e35: 19,946 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085b4e35 - + ROBIN.JSON: 61,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + ROBIN.JSON · pointer-table · 0x08307478: 860 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08307478 - + ROBIN.JSON · components · 0x08319126: 60,458 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08319126 - + SHIBA.JSON: 37,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 4 items - - - + + + SHIBA.JSON · pointer-table · 0x083080f8: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083080f8 - + SHIBA.JSON · pointer-table · 0x083110f4: 80 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083110f4 - + SHIBA.JSON · components · 0x0835140b: 17,787 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0835140b - + SHIBA.JSON · components · 0x085bd851: 18,951 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x085bd851 - + SUKUREETA.JSON: 12,759 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 2 items - - - + + + SUKUREETA.JSON · pointer-table · 0x08309f30: 188 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08309f30 - + SUKUREETA.JSON · components · 0x083d79b0: 12,571 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x083d79b0 - + COMMON: 3,352 bytes · Data · 1 items - - - + + + PALETTE.JSON: 3,352 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 10 items - - - + + + PALETTE.JSON · bgr555-banks · 0x08017b10: 448 bytes · Palettes · Last asset build: ROM bytes matched; appearance not verified · 0x08017b10 - + PALETTE.JSON · golden-sun-general-lz · 0x08a7993c: 12 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7993c - + PALETTE.JSON · golden-sun-general-lz · 0x08a85dfc: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a85dfc - + PALETTE.JSON · golden-sun-general-lz · 0x08a8b048: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a8b048 - + PALETTE.JSON · golden-sun-general-lz · 0x08a94afc: 372 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a94afc - + PALETTE.JSON · golden-sun-general-lz · 0x08aa1954: 440 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aa1954 - + PALETTE.JSON · golden-sun-general-lz · 0x08aaa148: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aaa148 - + PALETTE.JSON · golden-sun-general-lz · 0x08ab03ac: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ab03ac - + PALETTE.JSON · golden-sun-general-lz · 0x08abe378: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08abe378 - + PALETTE.JSON · golden-sun-general-lz · 0x08ac4258: 408 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ac4258 - + + + + + +ICON: 20 bytes · C · 1 items + + + + +COUNT_TABLE_ENTRIES.C · 0x0803d4bc: 20 bytes · C · 0x0803d4bc + + + +WINDOW: 20 bytes · C · 1 items + + + + +COUNT_SECOND_TABLE_ENTRIES.C · 0x0803d4d0: 20 bytes · C · 0x0803d4d0 + LIB: 114 bytes · C · 1 items - - - + + + CURVE.C: 114 bytes · C · 4 items - - - + + + CURVE.C · 0x0802d23c: 10 bytes · C · 0x0802d23c - + CURVE.C · 0x0802d248: 32 bytes · C · 0x0802d248 - + CURVE.C · 0x0802d268: 32 bytes · C · 0x0802d268 - + CURVE.C · 0x0802d288: 40 bytes · C · 0x0802d288 - + SOUND: 344 bytes · C · 1 items - - - + + + MUSIC_TRACK_OPERATE_WORK_BYTE.C · 0x081c31b4: 344 bytes · C · 0x081c31b4 - + SYSTEM: 12,856,640 bytes · C, Data · 3 items - - - -SYSTEM + + + +SYSTEM CONSTANT_ZERO_RESULT.C · 0x080132cc: 4 bytes · C · 0x080132cc - + RESOURCE.JSON: 12,848,444 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 400 items - - - + + + resource_015 · compressed data resource: 189 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086848d0 - + resource_021 · compressed data resource: 6,252 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086a7248 - + resource_025 · compressed data resource: 692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x086cd614 - + resource_0b1 · compressed data resource: 1,088 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887bee4 - + resource_0b2 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c324 - + resource_0b4 · compressed data resource: 2,089 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0887c708 - + resource_0ba · compressed data resource: 587 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08880678 - + resource_0bb · compressed data resource: 387 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088808c4 - + resource_0c1 · compressed data resource: 821 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08885298 - + resource_0c2 · compressed data resource: 4,298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088855d0 - + resource_0c3 · compressed data resource: 742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888669c - + resource_0c4 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08886984 - + resource_0c8 · compressed data resource: 3,196 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888aae4 - + resource_0c9 · compressed data resource: 41 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b760 - + resource_0ca · compressed data resource: 42 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b78c - + resource_0cb · compressed data resource: 1,981 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888b7b8 - + resource_0ce · compressed data resource: 1,318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888d820 - + resource_0cf · compressed data resource: 1,326 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888dd48 - + resource_0d0 · compressed data resource: 1,520 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888e278 - + resource_0d2 · compressed data resource: 512 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888eff4 - + resource_0d3 · compressed data resource: 1,053 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0888f1f4 - + resource_0d7 · compressed data resource: 601 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890048 - + resource_0d8 · compressed data resource: 1,403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088902a4 - + resource_0da · compressed data resource: 2,396 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08890acc - + resource_0e9 · compressed data resource: 714 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889af8c - + resource_0ee · compressed data resource: 1,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889db18 - + resource_0ef · compressed data resource: 1,322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0889e174 - + resource_0f2 · compressed data resource: 1,761 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a20f0 - + resource_0f3 · compressed data resource: 8,011 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a27d4 - + resource_0f7 · compressed data resource: 1,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a631c - + resource_0f8 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a6964 - + resource_0f9 · compressed data resource: 961 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7588 - + resource_0fa · compressed data resource: 455 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a794c - + resource_0fb · compressed data resource: 1,354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a7b14 - + resource_0fc · compressed data resource: 842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a8060 - + resource_0fd · compressed data resource: 1,900 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a83ac - + resource_102 · compressed data resource: 760 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088a9ec4 - + resource_104 · compressed data resource: 253 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088aacec - + resource_11a · compressed data resource: 4,039 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b46d0 - + resource_11e · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b7350 - + resource_121 · compressed data resource: 631 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088b9624 - + resource_127 · compressed data resource: 1,083 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bd758 - + resource_12a · compressed data resource: 1,181 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088be288 - + resource_12d · compressed data resource: 2,110 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088bf97c - + resource_134 · compressed data resource: 442 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3c88 - + resource_135 · compressed data resource: 443 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c3e44 - + resource_136 · compressed data resource: 2,368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4000 - + resource_137 · compressed data resource: 1,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088c4940 - + resource_160 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088d6428 - + resource_17e · compressed data resource: 97 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e3ddc - + resource_181 · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088e474c - + resource_189 · compressed data resource: 891 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eaa68 - + resource_18a · compressed data resource: 1,071 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x088eade4 - + resource_1be · compressed data resource: 757 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953b94 - + resource_1bf · compressed data resource: 217 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953e8c - + resource_1c0 · compressed data resource: 750 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08953f68 - + resource_1c1 · compressed data resource: 146 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954258 - + resource_1c2 · compressed data resource: 2,993 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089542ec - + resource_1c3 · compressed data resource: 3,242 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08954ea0 - + resource_1c4 · compressed data resource: 2,818 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08955b4c - + resource_1c5 · compressed data resource: 3,901 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08956650 - + resource_1c6 · compressed data resource: 2,105 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957590 - + resource_1c7 · compressed data resource: 3,104 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08957dcc - + resource_1c8 · compressed data resource: 2,178 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089589ec - + resource_1c9 · compressed data resource: 2,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959270 - + resource_1ca · compressed data resource: 360 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959d28 - + resource_1cb · compressed data resource: 449 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08959e90 - + resource_1cc · compressed data resource: 3,842 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0895a054 - + resource_1d9 · compressed data resource: 1,224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968014 - + resource_1da · compressed data resource: 616 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089684dc - + resource_1db · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968744 - + resource_1dc · compressed data resource: 568 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896890c - + resource_1dd · compressed data resource: 559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968b44 - + resource_1de · compressed data resource: 523 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968d74 - + resource_1df · compressed data resource: 515 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08968f80 - + resource_1e0 · compressed data resource: 142 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969184 - + resource_1e1 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969214 - + resource_1e2 · compressed data resource: 624 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969484 - + resource_1e3 · compressed data resource: 111 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089696f4 - + resource_1e4 · compressed data resource: 91 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969764 - + resource_1e5 · compressed data resource: 50 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697c0 - + resource_1e6 · compressed data resource: 52 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089697f4 - + resource_1e7 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969828 - + resource_1e8 · compressed data resource: 588 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089699c0 - + resource_1e9 · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969c0c - + resource_1ea · compressed data resource: 92 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969cf0 - + resource_1eb · compressed data resource: 93 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969d4c - + resource_1ec · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969dac - + resource_1ed · compressed data resource: 152 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08969f80 - + resource_1ee · compressed data resource: 34 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a018 - + resource_1ef · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a03c - + resource_1f0 · compressed data resource: 225 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a190 - + resource_1f1 · compressed data resource: 205 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a274 - + resource_1f2 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a344 - + resource_1f3 · compressed data resource: 46 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a468 - + resource_1f4 · compressed data resource: 610 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a498 - + resource_1f5 · compressed data resource: 155 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a6fc - + resource_1f6 · compressed data resource: 100 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a798 - + resource_1f7 · compressed data resource: 1,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896a7fc - + resource_1f8 · compressed data resource: 175 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896abfc - + resource_203 · compressed data resource: 21,047 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0896b4f0 - + resource_204 · compressed data resource: 12,106 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08970728 - + resource_205 · compressed data resource: 15,393 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08973674 - + resource_206 · compressed data resource: 8,777 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08977298 - + resource_207 · compressed data resource: 21,913 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089794e4 - + resource_208 · compressed data resource: 11,348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0897ea80 - + resource_209 · compressed data resource: 3,107 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089816d4 - + resource_20a · compressed data resource: 24,169 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089822f8 - + resource_20b · compressed data resource: 4,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08988164 - + resource_20c · compressed data resource: 4,201 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08989238 - + resource_20d · compressed data resource: 10,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898a2a4 - + resource_20e · compressed data resource: 11,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898ccd4 - + resource_20f · compressed data resource: 12,609 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0898f8fc - + resource_210 · compressed data resource: 8,349 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08992a40 - + resource_211 · compressed data resource: 8,989 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08994ae0 - + resource_212 · compressed data resource: 11,382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08996e00 - + resource_213 · compressed data resource: 7,929 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08999a78 - + resource_214 · compressed data resource: 14,840 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899b974 - + resource_215 · compressed data resource: 19,273 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x0899f36c - + resource_216 · compressed data resource: 9,328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a3eb8 - + resource_217 · compressed data resource: 14,336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a6328 - + resource_218 · compressed data resource: 12,303 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089a9b28 - + resource_219 · compressed data resource: 11,129 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089acb38 - + resource_21a · compressed data resource: 12,596 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089af6b4 - + resource_21b · compressed data resource: 14,598 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b27e8 - + resource_21c · compressed data resource: 10,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b60f0 - + resource_21d · compressed data resource: 6,894 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089b8be4 - + resource_21e · compressed data resource: 10,516 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ba6d4 - + resource_21f · compressed data resource: 13,375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089bcfe8 - + resource_220 · compressed data resource: 18,854 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c0428 - + resource_221 · compressed data resource: 3,994 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c4dd0 - + resource_222 · compressed data resource: 10,025 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c5d6c - + resource_223 · compressed data resource: 5,906 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c8498 - + resource_224 · compressed data resource: 16,884 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089c9bac - + resource_225 · compressed data resource: 17,955 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089cdda0 - + resource_226 · compressed data resource: 17,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d23c4 - + resource_227 · compressed data resource: 22,060 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089d668c - + resource_228 · compressed data resource: 8,717 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089dbcb8 - + resource_229 · compressed data resource: 6,114 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ddec8 - + resource_22a · compressed data resource: 11,669 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089df6ac - + resource_22b · compressed data resource: 4,167 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e2444 - + resource_22c · compressed data resource: 15,332 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e348c - + resource_22d · compressed data resource: 18,859 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089e7070 - + resource_22e · compressed data resource: 7,673 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eba1c - + resource_22f · compressed data resource: 5,059 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ed818 - + resource_230 · compressed data resource: 16,800 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089eebdc - + resource_231 · compressed data resource: 11,617 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f2d7c - + resource_232 · compressed data resource: 8,958 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f5ae0 - + resource_233 · compressed data resource: 16,832 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089f7de0 - + resource_234 · compressed data resource: 4,235 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fbfa0 - + resource_235 · compressed data resource: 8,968 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089fd02c - + resource_236 · compressed data resource: 12,534 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x089ff334 - + resource_237 · compressed data resource: 8,626 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0242c - + resource_238 · compressed data resource: 6,388 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a045e0 - + resource_239 · compressed data resource: 10,353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a05ed4 - + resource_23a · compressed data resource: 12,834 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a08748 - + resource_23b · compressed data resource: 5,890 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0b96c - + resource_23c · compressed data resource: 11,420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0d070 - + resource_23d · compressed data resource: 6,460 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a0fd0c - + resource_23e · compressed data resource: 9,742 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a11648 - + resource_23f · compressed data resource: 19,204 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a13c58 - + resource_240 · compressed data resource: 17,552 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1875c - + resource_241 · compressed data resource: 13,898 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a1cbec - + resource_242 · compressed data resource: 12,434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a20238 - + resource_243 · compressed data resource: 10,345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a232cc - + resource_244 · compressed data resource: 3,240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a25b38 - + resource_245 · compressed data resource: 3,654 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a267e0 - + resource_246 · compressed data resource: 3,606 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a27628 - + resource_247 · compressed data resource: 3,305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a28440 - + resource_248 · compressed data resource: 11,080 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2912c - + resource_249 · compressed data resource: 8,996 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2bc74 - + resource_24a · compressed data resource: 13,812 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a2df98 - + resource_24b · compressed data resource: 4,186 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3158c - + resource_24c · compressed data resource: 3,337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a325e8 - + resource_24d · compressed data resource: 2,692 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a332f4 - + resource_24e · compressed data resource: 2,013 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a33d78 - + resource_24f · compressed data resource: 3,887 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a34558 - + resource_250 · compressed data resource: 3,183 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a35488 - + resource_251 · compressed data resource: 3,095 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a360f8 - + resource_252 · compressed data resource: 1,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a36d10 - + resource_253 · compressed data resource: 3,096 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a37484 - + resource_254 · compressed data resource: 3,191 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3809c - + resource_255 · compressed data resource: 2,509 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a38d14 - + resource_256 · compressed data resource: 3,099 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a396e4 - + resource_257 · compressed data resource: 9,907 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3a300 - + resource_258 · compressed data resource: 10,002 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3c9b4 - + resource_259 · compressed data resource: 20,307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a3f0c8 - + resource_25a · compressed data resource: 6,384 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4401c - + resource_25b · compressed data resource: 10,809 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4590c - + resource_25c · compressed data resource: 3,050 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48348 - + resource_25d · compressed data resource: 19,379 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a48f34 - + resource_25e · compressed data resource: 9,065 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4dae8 - + resource_25f · compressed data resource: 6,559 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a4fe54 - + resource_260 · compressed data resource: 15,356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a517f4 - + resource_261 · compressed data resource: 3,269 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a553f0 - + resource_262 · compressed data resource: 13,325 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a560b8 - + resource_263 · compressed data resource: 16,581 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a594c8 - + resource_264 · compressed data resource: 14,022 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a5d590 - + resource_265 · compressed data resource: 16,936 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a60c58 - + resource_266 · compressed data resource: 15,783 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a64e80 - + resource_267 · compressed data resource: 11,036 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a68c28 - + resource_268 · compressed data resource: 18,419 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6b744 - + resource_269 · compressed data resource: 20,351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a6ff38 - + resource_26a · compressed data resource: 10,140 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a74eb8 - + resource_26b · compressed data resource: 7,880 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a77654 - + resource_273 · compressed data resource: 462 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08a7b0b8 - + resource_2ab · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08acbfa0 - + resource_2b7 · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ad91c8 - + resource_2ba · compressed data resource: 240 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08adc314 - + resource_2c0 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ae3b58 - + resource_2c8 · compressed data resource: 404 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aec41c - + resource_2cc · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08aef9f4 - + resource_2d2 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08af7c10 - + resource_2d8 · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b01aa0 - + resource_2de · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b08d60 - + resource_2e4 · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b10bb0 - + resource_2ea · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b16884 - + resource_2f0 · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1aae8 - + resource_2f6 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b1f010 - + resource_2fc · compressed data resource: 261 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b2300c - + resource_302 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b281d8 - + resource_308 · compressed data resource: 436 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b33b24 - + resource_30e · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b3cd84 - + resource_314 · compressed data resource: 267 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b43f04 - + resource_31a · compressed data resource: 256 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b48b0c - + resource_320 · compressed data resource: 277 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b4d994 - + resource_326 · compressed data resource: 361 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b52bf4 - + resource_32c · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b59b70 - + resource_32e · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5ad78 - + resource_330 · compressed data resource: 362 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b5bad0 - + resource_336 · compressed data resource: 260 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b672fc - + resource_33c · compressed data resource: 345 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b6f968 - + resource_340 · compressed data resource: 233 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7566c - + resource_346 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b7cdc8 - + resource_34c · compressed data resource: 390 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b84b9c - + resource_352 · compressed data resource: 371 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8a760 - + resource_354 · compressed data resource: 386 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8bc1c - + resource_357 · compressed data resource: 243 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8dfa4 - + resource_359 · compressed data resource: 224 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f66c - + resource_35a · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b8f74c - + resource_35c · compressed data resource: 450 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91970 - + resource_35d · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b91b34 - + resource_35f · compressed data resource: 301 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08b93bf8 - + resource_370 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baa9dc - + resource_373 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08baf0f0 - + resource_376 · compressed data resource: 335 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb2964 - + resource_379 · compressed data resource: 401 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bb8244 - + resource_381 · compressed data resource: 330 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bc61f0 - + resource_38f · compressed data resource: 187 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bd7c8c - + resource_395 · compressed data resource: 282 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bdbf38 - + resource_397 · compressed data resource: 420 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bde8d4 - + resource_39b · compressed data resource: 327 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08be3f90 - + resource_3a1 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08becaf8 - + resource_3a7 · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bf505c - + resource_3ad · compressed data resource: 411 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bfcac8 - + resource_3af · compressed data resource: 306 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08bff198 - + resource_3b5 · compressed data resource: 480 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c070f0 - + resource_3bb · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c11ca4 - + resource_3c2 · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c1c574 - + resource_3c8 · compressed data resource: 305 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25050 - + resource_3ca · compressed data resource: 296 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c25b88 - + resource_3d0 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c2b8f8 - + resource_3d6 · compressed data resource: 285 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c33bf4 - + resource_3dc · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c3c16c - + resource_3e2 · compressed data resource: 357 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c44608 - + resource_3e8 · compressed data resource: 482 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4d400 - + resource_3ea · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c4e150 - + resource_3f0 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c528b4 - + resource_3f2 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c53508 - + resource_3f4 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54350 - + resource_3f6 · compressed data resource: 227 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c54c3c - + resource_3f8 · compressed data resource: 255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c55780 - + resource_3fa · compressed data resource: 250 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c56100 - + resource_400 · compressed data resource: 197 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5a030 - + resource_402 · compressed data resource: 193 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5b010 - + resource_408 · compressed data resource: 211 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5dce8 - + resource_40a · compressed data resource: 220 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c5e634 - + resource_410 · compressed data resource: 418 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6140c - + resource_41a · compressed data resource: 312 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c6e584 - + resource_420 · compressed data resource: 456 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c784b4 - + resource_423 · compressed data resource: 369 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c7c200 - + resource_429 · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c86ec8 - + resource_42b · compressed data resource: 398 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c883f8 - + resource_42d · compressed data resource: 314 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c89fe4 - + resource_433 · compressed data resource: 392 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c929f0 - + resource_435 · compressed data resource: 475 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c94e24 - + resource_43b · compressed data resource: 409 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c44c - + resource_43c · compressed data resource: 347 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9c5e8 - + resource_43e · compressed data resource: 278 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08c9d6c4 - + resource_444 · compressed data resource: 266 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca3c18 - + resource_44a · compressed data resource: 365 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ca9d78 - + resource_455 · compressed data resource: 430 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cb61e4 - + resource_459 · compressed data resource: 342 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cbad0c - + resource_45f · compressed data resource: 340 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cc316c - + resource_465 · compressed data resource: 453 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ccc68c - + resource_46b · compressed data resource: 226 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd1884 - + resource_471 · compressed data resource: 353 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cd757c - + resource_478 · compressed data resource: 264 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ce22e0 - + resource_486 · compressed data resource: 293 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf5464 - + resource_488 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08cf779c - + resource_48e · compressed data resource: 433 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d03d10 - + resource_494 · compressed data resource: 291 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0a3b4 - + resource_497 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0ca40 - + resource_49a · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d0f598 - + resource_49e · compressed data resource: 307 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d13fc4 - + resource_4a4 · compressed data resource: 286 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d18cd4 - + resource_4ad · compressed data resource: 373 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d21a60 - + resource_4af · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d24238 - + resource_4b1 · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d25f80 - + resource_4ba · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d33c64 - + resource_4bc · compressed data resource: 241 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d35d78 - + resource_4c2 · compressed data resource: 329 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d3d930 - + resource_4cd · compressed data resource: 298 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d50bd0 - + resource_4d3 · compressed data resource: 258 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57c70 - + resource_4d4 · compressed data resource: 318 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57d74 - + resource_4d5 · compressed data resource: 328 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d57eb4 - + resource_4d7 · compressed data resource: 245 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d59880 - + resource_4d9 · compressed data resource: 422 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d5c7cc - + resource_4df · compressed data resource: 341 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d67828 - + resource_4e1 · compressed data resource: 457 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d69cf8 - + resource_4e7 · compressed data resource: 466 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d740c4 - + resource_4ed · compressed data resource: 425 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7a424 - + resource_4f3 · compressed data resource: 368 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d7ffcc - + resource_4f5 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8132c - + resource_4f7 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d821e0 - + resource_4f9 · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d837d0 - + resource_4fb · compressed data resource: 352 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d84d14 - + resource_4fd · compressed data resource: 363 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d85ae0 - + resource_500 · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d876d4 - + resource_502 · compressed data resource: 333 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d88270 - + resource_508 · compressed data resource: 382 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d8fadc - + resource_50e · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d98c14 - + resource_510 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08d9a924 - + resource_516 · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08da2be0 - + resource_51c · compressed data resource: 464 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dab02c - + resource_522 · compressed data resource: 378 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db35dc - + resource_526 · compressed data resource: 344 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08db87c0 - + resource_52e · compressed data resource: 359 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc2920 - + resource_530 · compressed data resource: 321 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc50ac - + resource_533 · compressed data resource: 376 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dc9a10 - + resource_539 · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd3194 - + resource_53c · compressed data resource: 469 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dd681c - + resource_541 · compressed data resource: 459 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddc27c - + resource_543 · compressed data resource: 311 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddddc0 - + resource_545 · compressed data resource: 309 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ddf904 - + resource_54b · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08de5ba0 - + resource_551 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08dedccc - + resource_553 · compressed data resource: 473 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df0aec - + resource_558 · compressed data resource: 485 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6a84 - + resource_559 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df6c6c - + resource_55b · compressed data resource: 403 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08df7b84 - + resource_563 · compressed data resource: 319 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e01e50 - + resource_56a · compressed data resource: 324 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e09df4 - + resource_570 · compressed data resource: 381 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e0fad4 - + resource_576 · compressed data resource: 284 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e1726c - + resource_57c · compressed data resource: 280 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e20bf0 - + resource_57f · compressed data resource: 377 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e22644 - + resource_58d · compressed data resource: 317 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e348dc - + resource_58f · compressed data resource: 295 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e36940 - + resource_591 · compressed data resource: 287 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e38b18 - + resource_597 · compressed data resource: 488 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e40f88 - + resource_59d · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e4835c - + resource_59f · compressed data resource: 351 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e492a0 - + resource_5a5 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e52734 - + resource_5a7 · compressed data resource: 354 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e54078 - + resource_5a9 · compressed data resource: 439 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e569d4 - + resource_5aa · compressed data resource: 391 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e56b8c - + resource_5ac · compressed data resource: 292 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e58538 - + resource_5af · compressed data resource: 410 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e5a658 - + resource_5b8 · compressed data resource: 366 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e65bbc - + resource_5be · compressed data resource: 434 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e6b41c - + resource_5cd · compressed data resource: 297 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c134 - + resource_5ce · compressed data resource: 375 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c260 - + resource_5cf · compressed data resource: 374 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c3d8 - + resource_5d0 · compressed data resource: 406 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c550 - + resource_5d1 · compressed data resource: 399 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7c6e8 - + resource_5d3 · compressed data resource: 279 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e7eb24 - + resource_5d9 · compressed data resource: 322 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e84efc - + resource_5df · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e8b4bc - + resource_5e5 · compressed data resource: 338 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e918a0 - + resource_5eb · compressed data resource: 334 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e97de4 - + resource_5ee · compressed data resource: 358 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08e9a640 - + resource_5f4 · compressed data resource: 356 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea1f4c - + resource_5f6 · compressed data resource: 370 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea28ec - + resource_5f8 · compressed data resource: 276 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea3554 - + resource_5fa · compressed data resource: 289 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ea4570 - + resource_600 · compressed data resource: 337 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eab258 - + resource_602 · compressed data resource: 348 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eabf5c - + resource_608 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb08b0 - + resource_60e · compressed data resource: 40 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb68d4 - + resource_614 · compressed data resource: 336 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08eb7c30 - + resource_61a · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebdbe8 - + resource_620 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebe81c - + resource_626 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ebf8fc - + resource_62c · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec03e8 - + resource_632 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1284 - + resource_638 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec1bcc - + resource_63e · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec2714 - + resource_644 · compressed data resource: 11 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08ec335c - + Cartridge data: 11,563,255 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified - + -RESOURCE.JSON +RESOURCE.JSON RESOURCE_DIRECTORY.JSON · pointer-table · 0x08680000: 8,192 bytes · Other data · Last asset build: ROM bytes matched; appearance not verified · 0x08680000 - + TEXT: 305,096 bytes · Data · 1 items - - - -TEXT + + + +TEXT MESSAGE_ARCHIVE.JSON · golden-sun-message-archive · 0x0805f914: 305,096 bytes · Text · Last asset build: ROM bytes matched; appearance not verified · 0x0805f914 - -MESSAGE_ARCHIVE.JSON + +MESSAGE_ARCHIVE.JSON - -raw: 2,273,848 bytes · Assembly · 2 items - - - -raw - -Main image assembly: 1,528,938 bytes · Assembly - -main.s + +raw: 2,273,734 bytes · Assembly · 2 items + + + +raw + +Main image assembly: 1,528,824 bytes · Assembly + +main.s overlays: 744,910 bytes · Assembly · 114 items - - - -overlays + + + +overlays resource_649 · compressed code overlay: 1,168 bytes · Assembly · 0x08ec3878 - + resource_64a · compressed code overlay: 7,440 bytes · Assembly · 0x08ec3d08 - + resource_64b · compressed code overlay: 15,856 bytes · Assembly · 0x08ec5a18 - + resource_64c · compressed code overlay: 11,760 bytes · Assembly · 0x08ec9808 - + resource_64d · compressed code overlay: 6,636 bytes · Assembly · 0x08ecc5f8 - + resource_64e · compressed code overlay: 4,536 bytes · Assembly · 0x08ecdfe4 - + resource_64f · compressed code overlay: 1,992 bytes · Assembly · 0x08ecf19c - + resource_650 · compressed code overlay: 6,240 bytes · Assembly · 0x08ecf964 - + resource_651 · compressed code overlay: 2,508 bytes · Assembly · 0x08ed11c4 - + resource_652 · compressed code overlay: 2,868 bytes · Assembly · 0x08ed1b90 - + resource_653 · compressed code overlay: 12,856 bytes · Assembly · 0x08ed26c4 - + resource_654 · compressed code overlay: 9,408 bytes · Assembly · 0x08ed58fc - + resource_655 · compressed code overlay: 11,688 bytes · Assembly · 0x08ed7dbc - + resource_656 · compressed code overlay: 7,420 bytes · Assembly · 0x08edab64 - + resource_657 · compressed code overlay: 4,420 bytes · Assembly · 0x08edc860 - + resource_658 · compressed code overlay: 5,640 bytes · Assembly · 0x08edd9a4 - + resource_659 · compressed code overlay: 5,292 bytes · Assembly · 0x08edefac - + resource_65a · compressed code overlay: 3,656 bytes · Assembly · 0x08ee0458 - + resource_65b · compressed code overlay: 628 bytes · Assembly · 0x08ee12a0 - + resource_65c · compressed code overlay: 484 bytes · Assembly · 0x08ee1514 - + resource_65d · compressed code overlay: 1,764 bytes · Assembly · 0x08ee16f8 - + resource_65e · compressed code overlay: 1,392 bytes · Assembly · 0x08ee1ddc - + resource_65f · compressed code overlay: 9,640 bytes · Assembly · 0x08ee234c - + resource_660 · compressed code overlay: 1,828 bytes · Assembly · 0x08ee48f4 - + resource_661 · compressed code overlay: 12,832 bytes · Assembly · 0x08ee5018 - + resource_662 · compressed code overlay: 5,312 bytes · Assembly · 0x08ee8238 - + resource_663 · compressed code overlay: 10,572 bytes · Assembly · 0x08ee96f8 - + resource_664 · compressed code overlay: 16,724 bytes · Assembly · 0x08eec044 - + resource_665 · compressed code overlay: 5,368 bytes · Assembly · 0x08ef0198 - + resource_666 · compressed code overlay: 2,712 bytes · Assembly · 0x08ef1690 - + resource_667 · compressed code overlay: 3,064 bytes · Assembly · 0x08ef2128 - + resource_668 · compressed code overlay: 10,628 bytes · Assembly · 0x08ef2d20 - + resource_669 · compressed code overlay: 5,212 bytes · Assembly · 0x08ef56a4 - + resource_66a · compressed code overlay: 3,500 bytes · Assembly · 0x08ef6b00 - + resource_66b · compressed code overlay: 4,724 bytes · Assembly · 0x08ef78ac - + resource_66c · compressed code overlay: 472 bytes · Assembly · 0x08ef8b20 - + resource_66d · compressed code overlay: 1,456 bytes · Assembly · 0x08ef8cf8 - + resource_66e · compressed code overlay: 2,724 bytes · Assembly · 0x08ef92a8 - + resource_66f · compressed code overlay: 3,556 bytes · Assembly · 0x08ef9d4c - + resource_670 · compressed code overlay: 14,176 bytes · Assembly · 0x08efab30 - + resource_671 · compressed code overlay: 16,460 bytes · Assembly · 0x08efe290 - + resource_672 · compressed code overlay: 4,840 bytes · Assembly · 0x08f022dc - + resource_673 · compressed code overlay: 2,664 bytes · Assembly · 0x08f035c4 - + resource_674 · compressed code overlay: 11,052 bytes · Assembly · 0x08f0402c - + resource_675 · compressed code overlay: 3,476 bytes · Assembly · 0x08f06b58 - + resource_676 · compressed code overlay: 5,580 bytes · Assembly · 0x08f078ec - + resource_677 · compressed code overlay: 1,816 bytes · Assembly · 0x08f08eb8 - + resource_678 · compressed code overlay: 7,916 bytes · Assembly · 0x08f095d0 - + resource_679 · compressed code overlay: 6,368 bytes · Assembly · 0x08f0b4bc - + resource_67a · compressed code overlay: 268 bytes · Assembly · 0x08f0cd9c - + resource_67b · compressed code overlay: 8,160 bytes · Assembly · 0x08f0cea8 - + resource_67c · compressed code overlay: 13,164 bytes · Assembly · 0x08f0ee88 - + resource_67d · compressed code overlay: 4,452 bytes · Assembly · 0x08f121f4 - + resource_67e · compressed code overlay: 2,696 bytes · Assembly · 0x08f13358 - + resource_67f · compressed code overlay: 4,032 bytes · Assembly · 0x08f13de0 - + resource_680 · compressed code overlay: 3,340 bytes · Assembly · 0x08f14da0 - + resource_681 · compressed code overlay: 14,404 bytes · Assembly · 0x08f15aac - + resource_682 · compressed code overlay: 5,320 bytes · Assembly · 0x08f192f0 - + resource_683 · compressed code overlay: 860 bytes · Assembly · 0x08f1a7b8 - + resource_684 · compressed code overlay: 208 bytes · Assembly · 0x08f1ab14 - + resource_685 · compressed code overlay: 8,184 bytes · Assembly · 0x08f1abe4 - + resource_686 · compressed code overlay: 8,592 bytes · Assembly · 0x08f1cbdc - + resource_687 · compressed code overlay: 5,856 bytes · Assembly · 0x08f1ed6c - + resource_688 · compressed code overlay: 1,184 bytes · Assembly · 0x08f2044c - + resource_689 · compressed code overlay: 1,000 bytes · Assembly · 0x08f208ec - + resource_68a · compressed code overlay: 3,088 bytes · Assembly · 0x08f20cd4 - + resource_68b · compressed code overlay: 4,828 bytes · Assembly · 0x08f218e4 - + resource_68c · compressed code overlay: 4,648 bytes · Assembly · 0x08f22bc0 - + resource_68d · compressed code overlay: 7,208 bytes · Assembly · 0x08f23de8 - + resource_68e · compressed code overlay: 3,576 bytes · Assembly · 0x08f25a10 - + resource_68f · compressed code overlay: 9,328 bytes · Assembly · 0x08f26808 - + resource_690 · compressed code overlay: 6,420 bytes · Assembly · 0x08f28c78 - + resource_691 · compressed code overlay: 11,460 bytes · Assembly · 0x08f2a58c - + resource_692 · compressed code overlay: 14,824 bytes · Assembly · 0x08f2d250 - + resource_693 · compressed code overlay: 3,044 bytes · Assembly · 0x08f30c38 - + resource_694 · compressed code overlay: 11,808 bytes · Assembly · 0x08f3181c - + resource_695 · compressed code overlay: 2,844 bytes · Assembly · 0x08f3463c - + resource_696 · compressed code overlay: 13,088 bytes · Assembly · 0x08f35158 - + resource_697 · compressed code overlay: 17,488 bytes · Assembly · 0x08f38478 - + resource_698 · compressed code overlay: 6,520 bytes · Assembly · 0x08f3c8c8 - + resource_699 · compressed code overlay: 6,904 bytes · Assembly · 0x08f3e240 - + resource_69a · compressed code overlay: 6,572 bytes · Assembly · 0x08f3fd38 - + resource_69b · compressed code overlay: 7,936 bytes · Assembly · 0x08f416e4 - + resource_69c · compressed code overlay: 8,512 bytes · Assembly · 0x08f435e4 - + resource_69d · compressed code overlay: 7,344 bytes · Assembly · 0x08f45724 - + resource_69e · compressed code overlay: 9,324 bytes · Assembly · 0x08f473d4 - + resource_69f · compressed code overlay: 6,792 bytes · Assembly · 0x08f49840 - + resource_6a0 · compressed code overlay: 9,136 bytes · Assembly · 0x08f4b2c8 - + resource_6a1 · compressed code overlay: 8,284 bytes · Assembly · 0x08f4d678 - + resource_6a2 · compressed code overlay: 6,988 bytes · Assembly · 0x08f4f6d4 - + resource_6a3 · compressed code overlay: 12,984 bytes · Assembly · 0x08f51220 - + resource_6a4 · compressed code overlay: 9,312 bytes · Assembly · 0x08f544d8 - + resource_6a5 · compressed code overlay: 14,244 bytes · Assembly · 0x08f56938 - + resource_6a6 · compressed code overlay: 4,040 bytes · Assembly · 0x08f5a0dc - + resource_6a7 · compressed code overlay: 2,068 bytes · Assembly · 0x08f5b0a4 - + resource_6a8 · compressed code overlay: 11,624 bytes · Assembly · 0x08f5b8b8 - + resource_6a9 · compressed code overlay: 3,440 bytes · Assembly · 0x08f5e620 - + resource_6aa · compressed code overlay: 15,368 bytes · Assembly · 0x08f5f390 - + resource_6ab · compressed code overlay: 12,040 bytes · Assembly · 0x08f62f98 - + resource_6ac · compressed code overlay: 8,820 bytes · Assembly · 0x08f65ea0 - + resource_6ad · compressed code overlay: 17,840 bytes · Assembly · 0x08f68114 - + resource_6ae · compressed code overlay: 13,120 bytes · Assembly · 0x08f6c6c4 - + resource_6af · compressed code overlay: 3,456 bytes · Assembly · 0x08f6fa04 - + resource_6b0 · compressed code overlay: 10,420 bytes · Assembly · 0x08f70784 - + resource_6b1 · compressed code overlay: 5,544 bytes · Assembly · 0x08f73038 - + resource_6b2 · compressed code overlay: 1,072 bytes · Assembly · 0x08f745e0 - + resource_6b3 · compressed code overlay: 1,364 bytes · Assembly · 0x08f74a10 - + resource_6b4 · compressed code overlay: 3,664 bytes · Assembly · 0x08f74f64 - + resource_6b5 · compressed code overlay: 5,096 bytes · Assembly · 0x08f75db4 - + resource_6b6 · compressed code overlay: 176 bytes · Assembly · 0x08f7719c - + resource_6b7 · compressed code overlay: 1,904 bytes · Assembly · 0x08f7724c - + resource_6b8 · compressed code overlay: 3,288 bytes · Assembly · 0x08f779bc - + resource_6b9 · compressed code overlay: 1,304 bytes · Assembly · 0x08f78694 - + resource_6ba · compressed code overlay: 2,714 bytes · Assembly · 0x08f78bac - + diff --git a/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG b/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG index 007b45ac77..35b63e2dc3 100644 --- a/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG +++ b/games/THE BROKEN SEAL/PREVIEW/TLA-EN-ROM.SVG @@ -8,818 +8,930 @@ 0x080000c0–0x08010000: 65,344 bytes · Unknown · 0x080000c0 - + 0x08010000–0x080132cc: 13,004 bytes · Unknown · 0x08010000 - + - -0x080132d0–0x08016d5c: 14,988 bytes · Unknown · 0x080132d0 - + +0x080132d0–0x08015768: 9,368 bytes · Unknown · 0x080132d0 + + + +0x08015778–0x08016d5c: 5,604 bytes · Unknown · 0x08015778 + 0x08016d7c–0x08016db4: 56 bytes · Unknown · 0x08016d7c - + 0x08016dd0–0x08017b10: 3,392 bytes · Unknown · 0x08016dd0 - + 0x08017cd0–0x08020000: 33,584 bytes · Unknown · 0x08017cd0 - + + + +0x08020000–0x08023f14: 16,148 bytes · Unknown · 0x08020000 + + + +0x08023f26–0x08023f28: 2 bytes · Unknown · 0x08023f26 + - -0x08020000–0x08024c50: 19,536 bytes · Unknown · 0x08020000 - + +0x08023f3a–0x0802471c: 2,018 bytes · Unknown · 0x08023f3a + + + +0x08024736–0x08024c50: 1,306 bytes · Unknown · 0x08024736 + 0x08024c6e–0x08024ed4: 614 bytes · Unknown · 0x08024c6e - + 0x08024ede–0x08025b58: 3,194 bytes · Unknown · 0x08024ede - + 0x08025b82–0x08025b84: 2 bytes · Unknown · 0x08025b82 - + 0x08025bb4–0x08025be4: 48 bytes · Unknown · 0x08025bb4 - + 0x08025c5c–0x08025c8c: 48 bytes · Unknown · 0x08025c5c - + 0x08025ee6–0x08025ee8: 2 bytes · Unknown · 0x08025ee6 - + 0x08025f22–0x08025f24: 2 bytes · Unknown · 0x08025f22 - + 0x08025f5e–0x08025f60: 2 bytes · Unknown · 0x08025f5e - + 0x08025f9a–0x08025fd0: 54 bytes · Unknown · 0x08025f9a - + 0x0802600a–0x0802600c: 2 bytes · Unknown · 0x0802600a - + 0x08026046–0x08026048: 2 bytes · Unknown · 0x08026046 - + 0x08026082–0x08026084: 2 bytes · Unknown · 0x08026082 - + 0x080260be–0x080260c0: 2 bytes · Unknown · 0x080260be - + 0x080260fa–0x080260fc: 2 bytes · Unknown · 0x080260fa - + 0x0802623a–0x0802623c: 2 bytes · Unknown · 0x0802623a - + 0x08026276–0x08026278: 2 bytes · Unknown · 0x08026276 - + 0x08026320–0x0802d23c: 28,444 bytes · Unknown · 0x08026320 - + + + +0x0802d246–0x0802d248: 2 bytes · Unknown · 0x0802d246 + - -0x0802d246–0x0802f380: 8,506 bytes · Unknown · 0x0802d246 - + +0x0802d2b0–0x0802f380: 8,400 bytes · Unknown · 0x0802d2b0 + - -0x08030310–0x08040000: 64,752 bytes · Unknown · 0x08030310 - + +0x08030310–0x0803d4bc: 53,676 bytes · Unknown · 0x08030310 + + + +0x0803d4e4–0x08040000: 11,036 bytes · Unknown · 0x0803d4e4 + 0x08040000–0x08050000: 65,536 bytes · Unknown · 0x08040000 - + 0x08050000–0x0805f914: 63,764 bytes · Unknown · 0x08050000 - + 0x080aa0dc–0x080b0000: 24,356 bytes · Unknown · 0x080aa0dc - + + + +0x080b0000–0x080b0288: 648 bytes · Unknown · 0x080b0000 + - -0x080b0000–0x080c0000: 65,536 bytes · Unknown · 0x080b0000 - + +0x080b0298–0x080c0000: 64,872 bytes · Unknown · 0x080b0298 + 0x080c0000–0x080caf70: 44,912 bytes · Unknown · 0x080c0000 - + 0x080cafc4–0x080d0000: 20,540 bytes · Unknown · 0x080cafc4 - + 0x080d0000–0x080e0000: 65,536 bytes · Unknown · 0x080d0000 - + 0x080e0000–0x080ef4a4: 62,628 bytes · Unknown · 0x080e0000 - + 0x080ef81c–0x080f0000: 2,020 bytes · Unknown · 0x080ef81c - + 0x080f0000–0x080f17a8: 6,056 bytes · Unknown · 0x080f0000 - + 0x080f21d0–0x08100000: 56,880 bytes · Unknown · 0x080f21d0 - + 0x08100000–0x08110000: 65,536 bytes · Unknown · 0x08100000 - + 0x08110000–0x08120000: 65,536 bytes · Unknown · 0x08110000 - + - -0x08120000–0x08130000: 65,536 bytes · Unknown · 0x08120000 - + +0x08120000–0x081201b4: 436 bytes · Unknown · 0x08120000 + + + +0x081201c4–0x08130000: 65,084 bytes · Unknown · 0x081201c4 + 0x08130000–0x08140000: 65,536 bytes · Unknown · 0x08130000 - + 0x08140000–0x08150000: 65,536 bytes · Unknown · 0x08140000 - + 0x08150000–0x08160000: 65,536 bytes · Unknown · 0x08150000 - + 0x08160000–0x08170000: 65,536 bytes · Unknown · 0x08160000 - + 0x08170000–0x08180000: 65,536 bytes · Unknown · 0x08170000 - + 0x08180000–0x08190000: 65,536 bytes · Unknown · 0x08180000 - + 0x08190000–0x081a0000: 65,536 bytes · Unknown · 0x08190000 - + 0x081a0000–0x081b0000: 65,536 bytes · Unknown · 0x081a0000 - + 0x081b0000–0x081c0000: 65,536 bytes · Unknown · 0x081b0000 - + 0x081c0000–0x081c1e98: 7,832 bytes · Unknown · 0x081c0000 - + 0x081c1efe–0x081c1f3c: 62 bytes · Unknown · 0x081c1efe - + 0x081c1fbe–0x081c1fc0: 2 bytes · Unknown · 0x081c1fbe - + 0x081c212a–0x081c212c: 2 bytes · Unknown · 0x081c212a - + 0x081c2166–0x081c21f8: 146 bytes · Unknown · 0x081c2166 - + 0x081c2310–0x081c233c: 44 bytes · Unknown · 0x081c2310 - + 0x081c2af4–0x081c2f68: 1,140 bytes · Unknown · 0x081c2af4 - + 0x081c30ca–0x081c30cc: 2 bytes · Unknown · 0x081c30ca - + 0x081c332c–0x081c3340: 20 bytes · Unknown · 0x081c332c - + 0x081c3388–0x081c33b0: 40 bytes · Unknown · 0x081c3388 - + 0x081c33c2–0x081c33c4: 2 bytes · Unknown · 0x081c33c2 - + 0x081c33d6–0x081c33d8: 2 bytes · Unknown · 0x081c33d6 - + 0x081c33ea–0x081c33ec: 2 bytes · Unknown · 0x081c33ea - + Unclassified ROM data: 15,194,024 bytes · Unknown - + - -games: 54,114 bytes · Unknown, C · 2 items - - - + +games: 54,368 bytes · Unknown, C · 2 items + + + COMMON: 3,676 bytes · C · 1 items - - - + + + SRC: 3,676 bytes · C · 1 items - - - + + + SOUND: 3,676 bytes · C · 24 items - - - + + + 0x081c2640–0x081c267c: 60 bytes · C · 0x081c2640 - + 0x081c2a3c–0x081c2a8c: 80 bytes · C · 0x081c2a3c - + 0x081c2994–0x081c2a3c: 168 bytes · C · 0x081c2994 - + 0x081c2a8c–0x081c2af4: 104 bytes · C · 0x081c2a8c - + ENGINE_INITIALIZE.C: 772 bytes · C · 5 items - - - + + + 0x081c233c–0x081c2434: 248 bytes · C · 0x081c233c - + 0x081c2434–0x081c24d8: 164 bytes · C · 0x081c2434 - + 0x081c24d8–0x081c2570: 152 bytes · C · 0x081c24d8 - + 0x081c2570–0x081c25c4: 84 bytes · C · 0x081c2570 - + 0x081c25c4–0x081c2640: 124 bytes · C · 0x081c25c4 - + 0x081c21f8–0x081c2310: 280 bytes · C · 0x081c21f8 - + MUSIC_PLAYER.C: 412 bytes · C · 3 items - - - + + + 0x081c267c–0x081c26f4: 120 bytes · C · 0x081c267c - + 0x081c26f4–0x081c27d8: 228 bytes · C · 0x081c26f4 - + 0x081c27d8–0x081c2818: 64 bytes · C · 0x081c27d8 - + 0x081c3140–0x081c31b4: 116 bytes · C · 0x081c3140 - + 0x081c30cc–0x081c3140: 116 bytes · C · 0x081c30cc - + 0x081c3044–0x081c30ac: 104 bytes · C · 0x081c3044 - + 0x081c2fd0–0x081c3044: 116 bytes · C · 0x081c2fd0 - + 0x081c2f68–0x081c2fd0: 104 bytes · C · 0x081c2f68 - + 0x081c2818–0x081c28e0: 200 bytes · C · 0x081c2818 - + 0x081c28e0–0x081c2994: 180 bytes · C · 0x081c28e0 - + 0x081c30ac–0x081c30ca: 30 bytes · C · 0x081c30ac - + 0x081c330c–0x081c332c: 32 bytes · C · 0x081c330c - + 0x081c3340–0x081c3388: 72 bytes · C · 0x081c3340 - + 0x081c33f8–0x081c3404: 12 bytes · C · 0x081c33f8 - + 0x081c33ec–0x081c33f8: 12 bytes · C · 0x081c33ec - + 0x081c33b0–0x081c33c2: 18 bytes · C · 0x081c33b0 - + 0x081c33d8–0x081c33ea: 18 bytes · C · 0x081c33d8 - + 0x081c33c4–0x081c33d6: 18 bytes · C · 0x081c33c4 - + PCM_KEY_TO_FREQUENCY.C: 102 bytes · C · 2 items - - - + + + 0x081c1e98–0x081c1efc: 100 bytes · C · 0x081c1e98 - + 0x081c1efc–0x081c1efe: 2 bytes · C · 0x081c1efc - + SOUND.C: 550 bytes · C · 11 items - - - + + + 0x081c1f3c–0x081c1fb4: 120 bytes · C · 0x081c1f3c - + 0x081c1fb4–0x081c1fbe: 10 bytes · C · 0x081c1fb4 - + 0x081c1fc0–0x081c1fec: 44 bytes · C · 0x081c1fc0 - + 0x081c1fec–0x081c2038: 76 bytes · C · 0x081c1fec - + 0x081c2038–0x081c208c: 84 bytes · C · 0x081c2038 - + 0x081c208c–0x081c20c0: 52 bytes · C · 0x081c208c - + 0x081c20c0–0x081c20f4: 52 bytes · C · 0x081c20c0 - + 0x081c20f4–0x081c2120: 44 bytes · C · 0x081c20f4 - + 0x081c2120–0x081c212a: 10 bytes · C · 0x081c2120 - + 0x081c212c–0x081c2158: 44 bytes · C · 0x081c212c - + 0x081c2158–0x081c2166: 14 bytes · C · 0x081c2158 - + + + +THE LOST AGE: 50,692 bytes · Unknown, C · 1 items + + + + +SRC: 50,692 bytes · Unknown, C · 8 items + + + + +BATTLE: 100 bytes · C · 2 items + + + + +0x081201b4–0x081201c4: 16 bytes · C · 0x081201b4 + - -THE LOST AGE: 50,438 bytes · Unknown, C · 1 items - - - - -SRC: 50,438 bytes · Unknown, C · 7 items - - - - -BATTLE: 84 bytes · C · 1 items - - - EFFECT: 84 bytes · C · 1 items - - - + + + 0x080caf70–0x080cafc4: 84 bytes · C · 0x080caf70 - - - - - -FIELD: 42,496 bytes · Unknown, C · 8 items - - - - -COMMON: 1,860 bytes · C · 1 items - - - - -SCRIPT: 1,860 bytes · C · 3 items - - - + + + + + +FIELD: 42,558 bytes · Unknown, C · 8 items + + + + +COMMON: 1,922 bytes · C · 2 items + + + + +OBJECT: 26 bytes · C · 1 items + + + + +0x0802471c–0x08024736: 26 bytes · C · 0x0802471c + + + + +SCRIPT: 1,896 bytes · C · 5 items + + + 0x08024c50–0x08024c6e: 30 bytes · C · 0x08024c50 - + OPERANDS.C: 1,820 bytes · C · 38 items - - - + + + 0x08025b58–0x08025b82: 42 bytes · C · 0x08025b58 - + 0x08025b84–0x08025bb4: 48 bytes · C · 0x08025b84 - + 0x08025be4–0x08025c0c: 40 bytes · C · 0x08025be4 - + 0x08025c0c–0x08025c34: 40 bytes · C · 0x08025c0c - + 0x08025c34–0x08025c5c: 40 bytes · C · 0x08025c34 - + 0x08025c8c–0x08025cb4: 40 bytes · C · 0x08025c8c - + 0x08025cb4–0x08025cdc: 40 bytes · C · 0x08025cb4 - + 0x08025cdc–0x08025d04: 40 bytes · C · 0x08025cdc - + 0x08025d04–0x08025d2c: 40 bytes · C · 0x08025d04 - + 0x08025d2c–0x08025d54: 40 bytes · C · 0x08025d2c - + 0x08025d54–0x08025d7c: 40 bytes · C · 0x08025d54 - + 0x08025d7c–0x08025da4: 40 bytes · C · 0x08025d7c - + 0x08025da4–0x08025dcc: 40 bytes · C · 0x08025da4 - + 0x08025dcc–0x08025df4: 40 bytes · C · 0x08025dcc - + 0x08025df4–0x08025e1c: 40 bytes · C · 0x08025df4 - + 0x08025e1c–0x08025e44: 40 bytes · C · 0x08025e1c - + 0x08025e44–0x08025e6c: 40 bytes · C · 0x08025e44 - + 0x08025e6c–0x08025e94: 40 bytes · C · 0x08025e6c - + 0x08025e94–0x08025ebc: 40 bytes · C · 0x08025e94 - + 0x08025ebc–0x08025ee6: 42 bytes · C · 0x08025ebc - + 0x08025ee8–0x08025f22: 58 bytes · C · 0x08025ee8 - + 0x08025f24–0x08025f5e: 58 bytes · C · 0x08025f24 - + 0x08025f60–0x08025f9a: 58 bytes · C · 0x08025f60 - + 0x08025fd0–0x0802600a: 58 bytes · C · 0x08025fd0 - + 0x0802600c–0x08026046: 58 bytes · C · 0x0802600c - + 0x08026048–0x08026082: 58 bytes · C · 0x08026048 - + 0x08026084–0x080260be: 58 bytes · C · 0x08026084 - + 0x080260c0–0x080260fa: 58 bytes · C · 0x080260c0 - + 0x080260fc–0x08026138: 60 bytes · C · 0x080260fc - + 0x08026138–0x08026174: 60 bytes · C · 0x08026138 - + 0x08026174–0x080261b0: 60 bytes · C · 0x08026174 - + 0x080261b0–0x080261d8: 40 bytes · C · 0x080261b0 - + 0x080261d8–0x08026200: 40 bytes · C · 0x080261d8 - + 0x08026200–0x0802623a: 58 bytes · C · 0x08026200 - + 0x0802623c–0x08026276: 58 bytes · C · 0x0802623c - + 0x08026278–0x080262b0: 56 bytes · C · 0x08026278 - + 0x080262b0–0x080262e8: 56 bytes · C · 0x080262b0 - + 0x080262e8–0x08026320: 56 bytes · C · 0x080262e8 - + + +0x08023f14–0x08023f26: 18 bytes · C · 0x08023f14 + + + +0x08023f28–0x08023f3a: 18 bytes · C · 0x08023f28 + + 0x08024ed4–0x08024ede: 10 bytes · C · 0x08024ed4 - + DAIRA_HEYA: 2,868 bytes · Unknown · 1 items - - - + + + DAIRA_HEYA: 2,868 bytes · Unknown · 0x08ed1b90 - + DAIRA_MURA: 2,508 bytes · Unknown · 1 items - - - + + + DAIRA_MURA: 2,508 bytes · Unknown · 0x08ed11c4 - + IDEJIMA: 6,240 bytes · Unknown, C · 1 items - - - + + + IDEJIMA: 6,240 bytes · Unknown, C · 0x08ecf964 - - + + SUHARA_GATE: 1,992 bytes · Unknown · 1 items - - - + + + SUHARA_GATE: 1,992 bytes · Unknown · 0x08ecf19c - + VINASU_CHOJO: 4,536 bytes · Unknown, C · 1 items - - - + + + VINASU_CHOJO: 4,536 bytes · Unknown, C · 0x08ecdfe4 - - + + VINASU_IRIGUCHI: 6,636 bytes · Unknown, C · 1 items - - - + + + VINASU_IRIGUCHI: 6,636 bytes · Unknown, C · 0x08ecc5f8 - - + + WORLD_MAP: 15,856 bytes · Unknown · 1 items - - - + + + WORLD_MAP: 15,856 bytes · Unknown · 0x08ec5a18 - + + + +GAME: 76 bytes · C · 2 items + + + + +CHARACTER: 16 bytes · C · 1 items + + + + +0x080b0288–0x080b0298: 16 bytes · C · 0x080b0288 + + - -GAME: 60 bytes · C · 1 items - - - FLAGS: 60 bytes · C · 3 items - - - + + + 0x08016d5c–0x08016d6c: 16 bytes · C · 0x08016d5c - + 0x08016db4–0x08016dd0: 28 bytes · C · 0x08016db4 - + 0x08016d6c–0x08016d7c: 16 bytes · C · 0x08016d6c - + + + + + +GRAPHICS: 56 bytes · C · 3 items + + + + +0x08015768–0x08015778: 16 bytes · C · 0x08015768 + + + +ICON: 20 bytes · C · 1 items + + + + +0x0803d4bc–0x0803d4d0: 20 bytes · C · 0x0803d4bc + + + + +WINDOW: 20 bytes · C · 1 items + + + + +0x0803d4d0–0x0803d4e4: 20 bytes · C · 0x0803d4d0 + + + + + +LIB: 114 bytes · C · 1 items + + + + +CURVE.C: 114 bytes · C · 4 items + + + + +0x0802d23c–0x0802d246: 10 bytes · C · 0x0802d23c + + +0x0802d248–0x0802d268: 32 bytes · C · 0x0802d248 + + +0x0802d268–0x0802d288: 32 bytes · C · 0x0802d268 + + + +0x0802d288–0x0802d2b0: 40 bytes · C · 0x0802d288 + - -LIB: 10 bytes · C · 1 items - - - - -0x0802d23c–0x0802d246: 10 bytes · C · 0x0802d23c - MENU: 7,440 bytes · Unknown · 1 items - - - + + + CLEAR: 7,440 bytes · Unknown · 1 items - - - + + + CLEAR: 7,440 bytes · Unknown · 0x08ec3d08 - + SOUND: 344 bytes · C · 1 items - - - + + + 0x081c31b4–0x081c330c: 344 bytes · C · 0x081c31b4 - + SYSTEM: 4 bytes · C · 1 items - - - + + + 0x080132cc–0x080132d0: 4 bytes · C · 0x080132cc - + diff --git a/games/THE LOST AGE/INCLUDE/OBJECT_RUNTIME.H b/games/THE LOST AGE/INCLUDE/OBJECT_RUNTIME.H new file mode 100644 index 0000000000..75a20aced4 --- /dev/null +++ b/games/THE LOST AGE/INCLUDE/OBJECT_RUNTIME.H @@ -0,0 +1,25 @@ +#ifndef ALCHEMY_OBJECT_RUNTIME_H +#define ALCHEMY_OBJECT_RUNTIME_H + +#include "TYPES.H" + +struct ObjectRuntime { + u8 unknown_00[0x08]; + s32 x; + s32 y; + s32 z; + s32 terrain_height; + u8 unknown_18[0x0a]; + u8 terrain_id; + u8 unknown_23; + s32 velocity_x; + s32 velocity_y; + s32 velocity_z; + s32 speed_limit; + s32 acceleration; + s32 target_x; + s32 target_y; + s32 target_z; +}; + +#endif diff --git a/games/THE LOST AGE/SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C b/games/THE LOST AGE/SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C new file mode 100644 index 0000000000..c6b53311cc --- /dev/null +++ b/games/THE LOST AGE/SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C @@ -0,0 +1,9 @@ +#include "TYPES.H" +struct BattleEventFlagWork { + u8 unknown_00[0x16c]; + u32 flags; +}; +void Battle_SetRuntimeFlagBit0(struct BattleEventFlagWork *runtime, u32 operand) +{ + runtime->flags |= 1; +} diff --git a/games/THE LOST AGE/SRC/FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C b/games/THE LOST AGE/SRC/FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C new file mode 100644 index 0000000000..d6f66b7358 --- /dev/null +++ b/games/THE LOST AGE/SRC/FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C @@ -0,0 +1,14 @@ +#include "OBJECT_RUNTIME.H" + +void Object_SetPositionAndResetMotion(struct ObjectRuntime *object, s32 x, s32 y, s32 z) +{ + object->z = z; + object->target_x = 0x80000000; + object->target_y = 0x80000000; + object->target_z = 0x80000000; + object->x = x; + object->y = y; + object->velocity_x = 0; + object->velocity_y = 0; + object->velocity_z = 0; +} diff --git a/games/THE LOST AGE/SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C b/games/THE LOST AGE/SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C new file mode 100644 index 0000000000..576702baf0 --- /dev/null +++ b/games/THE LOST AGE/SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C @@ -0,0 +1,6 @@ +#include "TYPES.H" +extern const u8 Data_080c15f4[]; +s32 Owner_GetRecordStride84(s32 arg0) +{ + return (s32)(Data_080c15f4 + arg0 * 0x54); +} diff --git a/games/THE LOST AGE/SRC/GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C b/games/THE LOST AGE/SRC/GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C new file mode 100644 index 0000000000..0947dbb5e8 --- /dev/null +++ b/games/THE LOST AGE/SRC/GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C @@ -0,0 +1,9 @@ +#include "TYPES.H" +#define ADDR_030011E0 0x030011e0 +void Camera_StoreSceneParameters(u32 value0, u32 value1, u32 value2) +{ + u32 *work = (u32 *)ADDR_030011E0; + work[0] = value0; + work[1] = value1; + work[2] = value2; +} diff --git a/games/THE LOST AGE/SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C b/games/THE LOST AGE/SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C new file mode 100644 index 0000000000..593e8e99bf --- /dev/null +++ b/games/THE LOST AGE/SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C @@ -0,0 +1,7 @@ +#include "TYPES.H" +extern u8 Data_0804f124[]; +extern u8 Data_0804eb58[]; +s32 Ui_CountIconTableEntries(void) +{ + return (s32)((u32)Data_0804f124 - (u32)Data_0804eb58) >> 2; +} diff --git a/games/THE LOST AGE/SRC/GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C b/games/THE LOST AGE/SRC/GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C new file mode 100644 index 0000000000..87b1baf564 --- /dev/null +++ b/games/THE LOST AGE/SRC/GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C @@ -0,0 +1,7 @@ +#include "TYPES.H" +extern u8 Data_08054e24[]; +extern u8 Data_08054a14[]; +s32 Ui_CountSecondTableEntries(void) +{ + return (s32)((u32)Data_08054e24 - (u32)Data_08054a14) >> 2; +} diff --git a/games/THE LOST AGE/recon/translation-units.json b/games/THE LOST AGE/recon/translation-units.json index e0e682907d..93e112fe4f 100644 --- a/games/THE LOST AGE/recon/translation-units.json +++ b/games/THE LOST AGE/recon/translation-units.json @@ -1512,6 +1512,125 @@ } ], "overlay": null + }, + { + "id": "tla-object-set-position-and-reset-motion", + "game": "tla", + "source": "games/THE LOST AGE/SRC/FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x0802471c", + "extent": 26, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-battle-set-runtime-flag-bit0", + "game": "tla", + "source": "games/THE LOST AGE/SRC/BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x081201b4", + "extent": 16, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-camera-store-scene-parameters", + "game": "tla", + "source": "games/THE LOST AGE/SRC/GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": {}, + "local_symbols": [], + "owners": [ + { + "address": "0x08015768", + "extent": 16, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-ui-count-icon-table-entries", + "game": "tla", + "source": "games/THE LOST AGE/SRC/GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": { + "Data_0804f124": { + "address": "0x0804f124", + "kind": "data" + }, + "Data_0804eb58": { + "address": "0x0804eb58", + "kind": "data" + } + }, + "local_symbols": [], + "owners": [ + { + "address": "0x0803d4bc", + "extent": 20, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-ui-count-second-table-entries", + "game": "tla", + "source": "games/THE LOST AGE/SRC/GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": { + "Data_08054e24": { + "address": "0x08054e24", + "kind": "data" + }, + "Data_08054a14": { + "address": "0x08054a14", + "kind": "data" + } + }, + "local_symbols": [], + "owners": [ + { + "address": "0x0803d4d0", + "extent": 20, + "state": "exact-c" + } + ], + "overlay": null + }, + { + "id": "tla-owner-get-record-stride84", + "game": "tla", + "source": "games/THE LOST AGE/SRC/GAME/CHARACTER/GET_RECORD_STRIDE84.C", + "compiler_route": "canonical-gcc296", + "absolute_symbols": { + "Data_080c15f4": { + "address": "0x080c15f4", + "kind": "data" + } + }, + "local_symbols": [], + "owners": [ + { + "address": "0x080b0288", + "extent": 16, + "state": "exact-c" + } + ], + "overlay": null } ] } diff --git a/games/THE LOST AGE/source-paths.json b/games/THE LOST AGE/source-paths.json index bb58de78a6..9511acb7d9 100644 --- a/games/THE LOST AGE/source-paths.json +++ b/games/THE LOST AGE/source-paths.json @@ -502,6 +502,30 @@ "main:08023f28": { "name": "Script_SetByte54", "source": "FIELD/COMMON/SCRIPT/OPERANDS_SET_BYTE54.C" + }, + "main:0802471c": { + "name": "Object_SetPositionAndResetMotion", + "source": "FIELD/COMMON/OBJECT/MOTION_SET_POSITION_AND_RESET_MOTION.C" + }, + "main:081201b4": { + "name": "Battle_SetRuntimeFlagBit0", + "source": "BATTLE/EVENT_QUEUE_SET_FLAG_BIT0.C" + }, + "main:08015768": { + "name": "Camera_StoreSceneParameters", + "source": "GRAPHICS/CAMERA_STORE_SCENE_PARAMETERS.C" + }, + "main:0803d4bc": { + "name": "Ui_CountIconTableEntries", + "source": "GRAPHICS/ICON/COUNT_TABLE_ENTRIES.C" + }, + "main:0803d4d0": { + "name": "Ui_CountSecondTableEntries", + "source": "GRAPHICS/WINDOW/COUNT_SECOND_TABLE_ENTRIES.C" + }, + "main:080b0288": { + "name": "Owner_GetRecordStride84", + "source": "GAME/CHARACTER/GET_RECORD_STRIDE84.C" } } }