# FriiDump candidate8 Xbox region correction

Candidate6 completed the Red Faction II Xbox acquisition successfully but
serialized `Europe/PAL` in the native report. That value did not describe the
Xbox title.

The copied Xbox metadata path had already parsed the `default.xbe` certificate
and printed:

```text
Regions:       North America
```

The stale report value came from the locked DVD-video view's sector-zero byte
3, interpreted through FriiDump's Nintendo `P`/`E`/`J` region mapping. That
mapping is valid for GameCube/Wii disc IDs, not Original Xbox XBE certificates.

Candidate7 changes the source of Xbox region metadata:

- Xbox region starts as unknown/null instead of inheriting PAL/NTSC from the
  DVD-video view.
- The copied GDR-8050L path carries the XBE certificate `GameRegion` mask back
  through `xbox_ref_dump_result`.
- The native report uses an Xbox-specific formatter.
- The raw mask is retained in a report note.

For Red Faction II [TQ00501A], the expected result is:

```json
"region": "North America"
```

and:

```text
Xbox XBE GameRegion mask: 0x00000001.
```

The `friidump-test-result.v1` schema is unchanged.
