Files
xenia-rs/audit-runs/audit-004/run-50m-probe.txt
MechaCat02 7108d6d131 feat(kernel): KRNBUG-AUDIT-004 — --ctor-probe PC hook + --dump-addr struct dump
Diagnostic-only, read-only. Lockstep `instructions=100000002`
preserved bit-exact at -n 100M --stable-digest. 586 → 588 tests.

Adds two read-only diagnostics for the parked-waiter producer hunt:

  * `--ctor-probe=0x8217C850,0x...` — at every interpreter step,
    if `ctx.pc` is in the configured set, print one `CTOR-PROBE`
    line capturing live r3 (= `this` in MSVC PPC ctors), lr
    (= return site), sp, plus an 8-frame back-chain with
    saved-r31/r30 per frame. Fires once per hit, exactly what the
    8-instance-pool probe needed.

  * `--dump-addr=0x828F3D08,0x828F4070,0x828F3EC0,...` — at end of
    run (after the FOCUS report in `dump_thread_diagnostic`), each
    address gets a 128-byte hex + be32 + ASCII dump. Used to
    inspect the static dispatcher / job-queue struct layouts
    AUDIT-003 identified.

Both gated default-off; empty set is a single `is_empty()` test on
the hot path. No guest state is mutated, so the
`sylpheed_n*m.json` lockstep digest is preserved.

KRNBUG-AUDIT-004 findings (corrects KRNBUG-AUDIT-002/003):

1. **The "8-instance pool" hypothesis for handle 0x1004 is FALSE.**
   Probing the inner per-instance ctors `[0x821783D8, 0x82181750,
   0x821701C8]` at -n 50M shows each fires EXACTLY ONCE with
   r3 = `[0x828F3EC0, 0x828F3D08, 0x828F4070]` respectively. All
   three handles are Meyers-style singletons with one dispatcher
   each. The "called 8 times" claim came from miscounting raw
   entries to the OUTER getter sub_8217C850 — but that getter is
   itself a Meyers-singleton-getter; only the FIRST entry cascades
   through to bl 0x821783D8 (gated on `[0x828F48D8] bit 0`).

2. **The producer indirection layer is the singleton-getter
   itself.** Static byte-scan of .rdata / .data shows 0 hits for
   the dispatcher addresses — no static registry table holds them.
   But the xrefs table for the OUTER getters reveals 5–6 callers
   each, MOSTLY non-create-chain, sharing the canonical producer
   pattern: `bl outer_singleton_getter; lwz r3, OFFSET(r3); bl
   0x824AA1D8` (with OFFSET=80 for 0x100c, =36 for 0x15e0). So the
   AUDIT-003 xref audit was necessary but not sufficient — it
   correctly saw "no direct producer references" but missed the
   singleton-getter indirection layer.

3. **Dispatcher struct layouts** (128-byte dumps captured at -n
   50M --halt-on-deadlock):
     - 0x828F3D08 (handle 0x100c): event_handle at +0x4C (0x100c),
       thread_handle at +0x48 (0x1010), self-pointer at +0x74,
       capacity 7 at +0x28, queue empty (+0/+3C = -1).
     - 0x828F4070 (handle 0x15e0): event_handle at +0x20 (0x15e0),
       sibling-handle 0x15E4 at +0x1C, queue empty (+0x10 = -1).
     - 0x828F3EC0 (handle 0x1004): event_handle at +0x78 (0x1004),
       4 guest-heap sub-buffers at +0x20/+0x3C/+0x44/+0x50 in
       0x4xxxxxxx range — noticeably different layout from the
       other two pure POD job queues.

Files:
  crates/xenia-kernel/src/state.rs   ctor_probe_pcs / dump_addrs +
                                     fire_ctor_probe_if_match + 2 tests
  crates/xenia-app/src/main.rs       Exec --ctor-probe / --dump-addr
                                     CLI parsing, prologue hook,
                                     end-of-run struct dumper
  audit-findings.md                  KRNBUG-AUDIT-004 entry
  audit-runs/audit-004/              50M probe runs (v1 outer-getter
                                     hits, v2 inner-ctor hits proving
                                     the singleton hypothesis)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-04 17:09:47 +02:00

1152 lines
215 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Finished `release` profile [optimized] target(s) in 0.22s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --trace-handles-focus=0x1004,0x100c,0x15e0 --ctor-probe=0x8217C850,0x82181750,0x821701C8 --dump-addr=0x828F3D08,0x828F4070 -n 50000000`
2026-05-04T15:04:29.149526Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-04T15:04:29.151286Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-04T15:04:29.151319Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-04T15:04:29.217493Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-04T15:04:29.217892Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=66.0 path=sylpheed.iso bytes=3497984
2026-05-04T15:04:29.222175Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-04T15:04:29.222306Z  INFO cmd_exec: xenia_rs: handle audit enabled (--trace-handles) path=sylpheed.iso
2026-05-04T15:04:29.222318Z  INFO cmd_exec: xenia_rs: handle audit focus: 3 (0x00001004, 0x0000100c, 0x000015e0) path=sylpheed.iso
2026-05-04T15:04:29.222324Z  INFO cmd_exec: xenia_rs: ctor probes armed: 3 (0x821701c8, 0x8217c850, 0x82181750) path=sylpheed.iso
2026-05-04T15:04:29.222329Z  INFO cmd_exec: xenia_rs: dump addresses armed: 2 (0x828f3d08, 0x828f4070) path=sylpheed.iso
2026-05-04T15:04:29.222480Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso
2026-05-04T15:04:29.222487Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-04T15:04:29.227044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.227069Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1401403 sp=0x700ffc40 r3=0x00000000 lr=0x8280f824
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f824 saved-r31=0x8287017c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403264 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f83c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f83c saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403292 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f84c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f84c saved-r31=0x8289ac74 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403338 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f87c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f87c saved-r31=0x8289ac74 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403368 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f894
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f894 saved-r31=0x82870184 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403396 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8a4
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8a4 saved-r31=0x8289ac9c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870184 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403442 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8d4
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8d4 saved-r31=0x8289ac9c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403472 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f8ec
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f8ec saved-r31=0x82870188 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403517 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f918
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f918 saved-r31=0x8289acc4 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870188 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403564 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f94c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f94c saved-r31=0x8287018c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870190 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403594 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f964
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f964 saved-r31=0x82870190 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870190 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403640 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f994
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f994 saved-r31=0x8289ad14 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870194 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403670 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9ac
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9ac saved-r31=0x82870194 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870194 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403716 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9dc
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9dc saved-r31=0x8289ad3c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403746 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280f9f4
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280f9f4 saved-r31=0x82870198 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403774 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa04
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa04 saved-r31=0x8289ad64 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870198 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403820 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa34
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa34 saved-r31=0x8289ad64 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403850 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa4c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa4c saved-r31=0x8287019c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=1403878 sp=0x700ffc40 r3=0x828f48d4 lr=0x8280fa5c
CTOR-PROBE frame=0 fp=0x700ffc40 lr=0x8280fa5c saved-r31=0x8289ad8c saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x8287019c saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:04:29.441380Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x82181750 tid=1 hw=0 cycle=5363599 sp=0x700ff8c0 r3=0x828f3d08 lr=0x82180114
CTOR-PROBE frame=0 fp=0x700ff8c0 lr=0x82180114 saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff920 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:04:29.441477Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.441490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=2 handle=0x1010 hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1018 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442258Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x101c hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1020 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1024 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1028 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1030 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442988Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.442996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1040 hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.443275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1030) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.443931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1048 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.443980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x104c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444056Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1050 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1054 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1058 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x105c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.444239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.447884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.449891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1074 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x107c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1080 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1084 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.450910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x108c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.451051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1090 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.451062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.451071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.452228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.452507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.452865Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.452874Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x10b8 hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.453497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.453543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.453820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.453896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.453981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.454417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.454444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.454465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.459307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.459480Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:29.459478Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0accb000 size_bytes=4096 size_dwords=1024
2026-05-04T15:04:29.459503Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-04T15:04:29.459494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10e8 hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.360963Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b0d7000 width=1280 height=720
2026-05-04T15:04:30.380730Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.380749Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10f4 hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=6160023 sp=0x700ff760 r3=0x700ff810 lr=0x82173a40
CTOR-PROBE frame=0 fp=0x700ff760 lr=0x82173a40 saved-r31=0x700ff760 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff880 lr=0x822f1b50 saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:04:30.382041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.382912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1108 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.382964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x110c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1110 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1114 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1118 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x111c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.383703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.562958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.563277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x112c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.567860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1134 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.567906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1138 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x113c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1144 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1148 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.568381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.579213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.579560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.580447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1168 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.580501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.580964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1170 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.581006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1174 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.581060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1178 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.581305Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x117c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.581318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.581330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.622911Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.622934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1188 hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.622957Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.622962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x118c hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.623257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b8ef000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.680999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.681167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.681338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.681506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.681678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.681846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.682862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.683908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.684974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.685146Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.685315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.685492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.685663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.685831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.686855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687186Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687807Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.687984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.688175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.688434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.688619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.688808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.689018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.689340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.689523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.689707Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.689880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690580Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.690932Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.691948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.692115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.692252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.694202Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.694217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x12ac hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.694702Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.694712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12b8 hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.696615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.697501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.697551Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698153Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.698459Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699285Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12f0 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699392Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699400Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12f8 hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699431Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.699437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12fc hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.703604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1304 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.705335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1310 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.705624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1310) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x131c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1320 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1328 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x132c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.706790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.707378Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.708058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.712573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1344 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.720917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x1348 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.725071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.725317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.725568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.725810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.726077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.726325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.726584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.726869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.727109Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.727345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.727577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.727845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.728191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.733167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.737741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.738067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.738274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.738521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.738789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.738968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.739164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.739333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.739498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.739670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.739835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.740850Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.741921Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742248Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.742927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743422Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743587Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.743929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.744947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745112Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745611Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.745945Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.746110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.746274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.746470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.749953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1484 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1488 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x148c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1490 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752617Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1494 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1498 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.752789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.753210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.753693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.755982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.759060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767711Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.767957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.768504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.773382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.773582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.773779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.773958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.774130Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.774301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.774473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.774651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.774839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.775878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.776048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.776218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.776388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.776556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.776730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.867680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x152c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.867743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1530 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1534 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1538 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x153c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1540 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.868983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.870790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.870829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1558 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871519Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x155c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1560 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1564 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.871779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.872269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.876979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.877157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.877332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.877552Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.877728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.877898Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.878073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.878246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.878418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.878572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x159c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.926857Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.927387Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(11) is_main=false cycle=18574608 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.927615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.927663Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.927671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x15c8 hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9170927 sp=0x700ff620 r3=0x00000000 lr=0x821cceb0
CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821cceb0 saved-r31=0x400065a0 saved-r30=0x700ff6a0
CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9170985 sp=0x700ff620 r3=0x00000000 lr=0x821ccec8
CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccec8 saved-r31=0x700ff620 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171042 sp=0x700ff620 r3=0x00000000 lr=0x821ccedc
CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccedc saved-r31=0x700ff620 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171102 sp=0x700ff620 r3=0x00000000 lr=0x821ccefc
CTOR-PROBE frame=0 fp=0x700ff620 lr=0x821ccefc saved-r31=0x700ff620 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff6a0 lr=0x821c53dc saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE pc=0x8217c850 tid=1 hw=0 cycle=9171172 sp=0x700ff6a0 r3=0x00000000 lr=0x821c53e0
CTOR-PROBE frame=0 fp=0x700ff6a0 lr=0x821c53e0 saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:04:30.934366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.934437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15dc path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x821701c8 tid=1 hw=0 cycle=9203618 sp=0x700ff5c0 r3=0x828f4070 lr=0x8216f65c
CTOR-PROBE frame=0 fp=0x700ff5c0 lr=0x8216f65c saved-r31=0x40929b60 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff630 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff6a0 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
2026-05-04T15:04:30.936085Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15e4 hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936629Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15f4 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936769Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1600 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936825Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1608 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x160c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.936985Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1610 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.937132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1614 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.937590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.937610Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x161c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:30.937626Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1620 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x8217c850 tid=7 hw=2 cycle=3368 sp=0x71187c00 r3=0x00000000 lr=0x821ccf70
CTOR-PROBE frame=0 fp=0x71187c00 lr=0x821ccf70 saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x71187c80 lr=0x821c7d64 saved-r31=0x40929b60 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x71187ce0 lr=0x82174664 saved-r31=0x71187ce0 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x71187d70 lr=0x822f2144 saved-r31=0x40d09a40 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x71187e20 lr=0x822f2034 saved-r31=0x40d09a40 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x71187ea0 lr=0x822f1f08 saved-r31=0x40d09a40 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x71187f00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:04:31.839228Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b0d7000 width=1280 height=720
2026-05-04T15:04:31.839404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.844560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1628 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.844654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x162c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.846687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.846803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1634 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.846982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1638 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.847686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x163c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.847709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1640 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.847727Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.849275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.858660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.859103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.859505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.859916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.860318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.860725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.861127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.861527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.861933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.862336Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.862747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.863148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.863562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.863972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.864371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.864780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.865183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.865584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.865996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.866401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.866810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.867210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.867615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.868026Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.868435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.868846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.869253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.869660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.870087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.870498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.870915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.871321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.871731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.872136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.872546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.873052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.873457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.873870Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.874274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.874680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.875082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.875482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.875890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.876292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.876696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.877097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.877505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.877909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.878393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.881518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.890439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.890890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.891297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.891704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.892108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.892508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.892913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.893315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.893723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.894133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.894533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.894939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.895346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.895819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.896230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.896854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.897256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.897660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.898063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.898463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.898873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.899273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.899682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.900087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.900495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.900906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.901313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.901720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.902124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.902528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.902936Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.903393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.903801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.904203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.904605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.905013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.905413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.905824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.906226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.906626Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.907036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.907439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.907849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.908258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.908665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.909067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.909467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.909871Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.910271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.910681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.911092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.911491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.911895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.912296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.912699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.913100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.913503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.913908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.914308Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.914713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.915123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.915556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.915970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.916373Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.916779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.917180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.917582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.917987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.918389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.918796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.919198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.919600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.920007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.920411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.920818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.921219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.921620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.922032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.922433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.922838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.923241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.923641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.924050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.924449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.924859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.925258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.925664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.926066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.926468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.926873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.927272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.927674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.928129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.928529Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.928937Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.929338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.929741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.930142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.930540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.930948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.931347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.931760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.932245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.932671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.933079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.933481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.933893Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.934360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:31.938875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14ac) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:04:33.034626Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None
=== Final State ===
PC: 0x825f0fd8
LR: 0x824ac578
CTR: 0x823e9d90
CR: 0x24000024
XER: CA=0 OV=0 SO=0
r0 : 0x0000000082153bd8
r1 : 0x00000000700ff880
r2 : 0x0000000020000000
r4 : 0x0000000000000001
r7 : 0x0000000040111a50
r11: 0x0000000000000127
r12: 0x00000000822f1e00
r13: 0x000000007fff0000
r18: 0x0000000040d09a7c
r19: 0x0000000000000001
r21: 0xffffffffffffffff
r22: 0x0000000040542740
r23: 0x00000000828f3844
r24: 0x0000000000000055
r25: 0x00000000828e0000
r26: 0x00000000828f3888
r27: 0x0000000000000055
r31: 0x00000000000010ec
2026-05-04T15:04:33.037817Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
=== Thread diagnostics ===
hw=0 idx=0 tid=1 state=Ready pc=0x825f0fd8 lr=0x824ac578 sp=0x700ff880
r0=0x82153bd8 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x40111a50
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000127 r12=0x822f1e00 r13=0x7fff0000
hw=0 idx=1 tid=12 state=Ready pc=0x824ac578 lr=0x824ac578 sp=0x714a7970
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000007 r10=0x40542100 r11=0x00000001 r12=0x822dfc38 r13=0x4d0d3000
hw=0 idx=2 tid=17 state=Ready pc=0x823dde30 lr=0xbcbcbcbc sp=0x7152bf00
r0=0x00000000 r3=0x828f3c4c r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a4000
hw=1 idx=0 tid=11 state=Exited(0) pc=0xbcbcbcbc lr=0xbcbcbcbc sp=0x71497f00
r0=0x821511a0 r3=0x00000000 r4=0x4024b1a0 r5=0x402118c0 r6=0x03a72328 r7=0x03a723d0
r8=0x43b7732c r9=0x828f0000 r10=0x00000001 r11=0x828f0000 r12=0xbcbcbcbc r13=0x4d0d1000
hw=1 idx=1 tid=13 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x714d7e00
r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d5000
hw=1 idx=2 tid=15 state=Ready pc=0x825f1080 lr=0x824ab1d4 sp=0x7150bc90
r0=0x821511a0 r3=0x7150bce8 r4=0x7150be68 r5=0x00000008 r6=0x00000000 r7=0x00000001
r8=0x00000000 r9=0x7150bde8 r10=0x820b0000 r11=0x00000000 r12=0x824564e4 r13=0x4e0a0000
hw=1 idx=3 tid=19 state=Ready pc=0x823ddb50 lr=0xbcbcbcbc sp=0x7172bf00
r0=0x00000000 r3=0x828f3c88 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a8000
hw=2 idx=0 tid=6 state=Blocked(WaitAny { handles: [1111821148], deadline: Some(42946672) }) pc=0x824cd4f4 lr=0x824cd4f4 sp=0x71087e60
r0=0x00000000 r3=0x00000000 r4=0x00000003 r5=0x00000001 r6=0x00000000 r7=0x71087eb0
r8=0x00000000 r9=0x00000000 r10=0x00000002 r11=0x00000002 r12=0xbcbcbcbc r13=0x4b0d5000
hw=2 idx=1 tid=7 state=Ready pc=0x824bf49c lr=0x824bf494 sp=0x71187ae0
r0=0x00000000 r3=0x00000001 r4=0x4244df00 r5=0x00000003 r6=0x00000000 r7=0x0000800e
r8=0x00000000 r9=0x00000001 r10=0x00000001 r11=0x00000000 r12=0x824bf494 r13=0x4b809000
hw=3 idx=0 tid=3 state=Blocked(WaitAny { handles: [4116], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7102fb80
r0=0x821511a0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a723d0
r8=0x43b7732c r9=0x828f0000 r10=0x00000008 r11=0x00000000 r12=0x8245a660 r13=0x4acc5000
hw=3 idx=1 tid=4 state=Blocked(WaitAny { handles: [4152, 4156], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7106fc90
r0=0x821511d0 r3=0x00000000 r4=0x7106fcf0 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x7106fce0 r9=0x43b77334 r10=0x00000002 r11=0x00000020 r12=0x82450b48 r13=0x4acc7000
hw=3 idx=2 tid=14 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71507e00
r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d7000
hw=3 idx=3 tid=18 state=Blocked(WaitAny { handles: [5624, 16777216], deadline: None }) pc=0x824ab214 lr=0x824ab214 sp=0x7162bce0
r0=0x00000000 r3=0x00000000 r4=0x7162bd40 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x00000000 r9=0x00000013 r10=0x00000002 r11=0x00000020 r12=0x823ddbe4 r13=0x4e0a6000
hw=4 idx=0 tid=8 state=Blocked(Suspended) pc=0x824d2878 lr=0xbcbcbcbc sp=0x71287f00
r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8eb000
hw=4 idx=1 tid=16 state=Blocked(WaitAny { handles: [5600], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10
r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x8217057c r13=0x4e0a2000
hw=5 idx=0 tid=2 state=Blocked(WaitAny { handles: [4108], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10
r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x82181988 r13=0x4acc3000
hw=5 idx=1 tid=5 state=Blocked(WaitAny { handles: [4272, 4276], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7107fc60
r0=0x821511a0 r3=0x00000000 r4=0x7107fcc0 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x7107fcb0 r9=0x00009030 r10=0x00000002 r11=0x00000020 r12=0x82458d68 r13=0x4acc9000
hw=5 idx=2 tid=9 state=Blocked(Suspended) pc=0x824d2940 lr=0xbcbcbcbc sp=0x71387f00
r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8ed000
hw=5 idx=3 tid=10 state=Blocked(WaitAny { handles: [4100], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71397d90
r0=0x82153c08 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a72328
r8=0x43b7728c r9=0x43b77328 r10=0x40541e00 r11=0x820b5714 r12=0x821789c8 r13=0x4d0cf000
-- Handle waiter lists --
handle=0x000012f4 Semaphore(0/2147483647) waiters(tid)=[14, 13]
handle=0x0000103c Semaphore(0/2147483647) waiters(tid)=[4]
handle=0x0000100c Event(sig=false, mr=true) waiters(tid)=[2]
handle=0x00001038 Event(sig=false, mr=false) waiters(tid)=[4]
handle=0x000015e0 Event(sig=false, mr=true) waiters(tid)=[16]
handle=0x00001004 Event(sig=false, mr=true) waiters(tid)=[10]
handle=0x000010b0 Event(sig=false, mr=false) waiters(tid)=[5]
handle=0x42450b5c Event(sig=false, mr=true) waiters(tid)=[6]
handle=0x000015f8 Event(sig=false, mr=false) waiters(tid)=[18]
handle=0x00001014 Semaphore(0/2147483647) waiters(tid)=[3]
handle=0x000010b4 Semaphore(0/2147483647) waiters(tid)=[5]
=== Handle audit trails ===
handle=0x00001004 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=10 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x0000100c kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=2 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x00001014 kind=Semaphore waiters=1 signals=15 waits=16 wakes=15 <SUSPECT>
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (16):
[ 0] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 1] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 2] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 3] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
... (12 more)
signals (15):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
... (11 more)
wakes (15):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
... (11 more)
handle=0x00001038 kind=Event/Auto waiters=1 signals=0 waits=32 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (32):
[ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
handle=0x0000103c kind=Semaphore waiters=1 signals=32 waits=32 wakes=12
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (32):
[ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
signals (32):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
... (28 more)
wakes (12):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 2] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 3] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
... (8 more)
handle=0x000010b0 kind=Event/Auto waiters=1 signals=0 waits=9 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent
waits (9):
[ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (5 more)
handle=0x000010b4 kind=Semaphore waiters=1 signals=8 waits=9 wakes=5
created cycle=0 tid=4 lr=0x824ab110 src=NtCreateSemaphore
waits (9):
[ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (5 more)
signals (8):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
... (4 more)
wakes (5):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
... (1 more)
handle=0x000010dc kind=Semaphore waiters=0 signals=2 waits=3 wakes=2 <SUSPECT>
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (3):
[ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
signals (2):
[ 0] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
wakes (2):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
handle=0x000010f0 kind=Event/Manual waiters=0 signals=1 waits=3 wakes=1 <SUSPECT>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (3):
[ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
signals (1):
[ 0] cycle=0 tid=1 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/manual aux=0x0
handle=0x000010fc kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 <SUSPECT>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=1 lr=0x824ac578 src=do_wait_single aux=0x0
signals (1):
[ 0] cycle=0 tid=4 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
handle=0x00001104 kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 <SUSPECT>
created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=4 lr=0x824ac578 src=do_wait_single aux=0x0
signals (1):
[ 0] cycle=0 tid=5 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=5 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
handle=0x000012f4 kind=Semaphore waiters=2 signals=0 waits=2 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=12 lr=0x824ab110 src=NtCreateSemaphore
waits (2):
[ 0] cycle=0 tid=14 lr=0x824ac578 src=do_wait_single aux=0x0
[ 1] cycle=0 tid=13 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x000015bc kind=Timer/Auto waiters=0 signals=0 waits=32 wakes=1 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x82612744 src=NtCreateTimer
waits (32):
[ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
wakes (1):
[ 0] cycle=9168371 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
handle=0x000015c0 kind=Event/Auto waiters=0 signals=0 waits=32 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (32):
[ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
handle=0x000015e0 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=16 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x000015f8 kind=Event/Auto waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=18 lr=0x824ab214 src=do_wait_multiple aux=0x4
=== Handle audit (focus) ===
handle=0x00001004 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ffab0 lr=0x824a9f6c
[ 1] fp=0x700ffb40 lr=0x821784f8
[ 2] fp=0x700ffbd0 lr=0x8217c8a8
[ 3] fp=0x700ffc40 lr=0x8280f824
[ 4] fp=0x700ffca0 lr=0x824acbf0
[ 5] fp=0x700ffd10 lr=0x824ab7a8
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ffb00
frame=1 lr=0x821784f8 saved-r31=0x700ffb40 saved-r30=0x00000000
frame=2 lr=0x8217c8a8 saved-r31=0x700ffbd0 saved-r30=0x00000000
frame=3 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000
frame=4 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
frame=5 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=10 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=10 pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 r3=0x00000000 r30=0x00000000 r31=0x00001004
FRAME 0 fp=0x71397d90 lr=0x824ac578 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 1 fp=0x71397e10 lr=0x821789c8 saved r31=0x71397e10 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x71397f00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
handle=0x0000100c kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ff7c0 lr=0x824a9f6c
[ 1] fp=0x700ff850 lr=0x821817c0
[ 2] fp=0x700ff8c0 lr=0x82180114
[ 3] fp=0x700ff920 lr=0x82181c58
[ 4] fp=0x700ff980 lr=0x8216eaa4
[ 5] fp=0x700ffd10 lr=0x824ab8e0
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff810
frame=1 lr=0x821817c0 saved-r31=0x828f3d08 saved-r30=0x00000000
frame=2 lr=0x82180114 saved-r31=0x828f3d08 saved-r30=0x00000000
frame=3 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000
frame=4 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000
frame=5 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=2 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=2 pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 r3=0x00000000 r30=0x00000000 r31=0x0000100c
FRAME 0 fp=0x7101fdf0 lr=0x824ac578 saved r31=0x828f3d34 r30=0x00000000 r29=0x828f3d08 r28=0x00000000
FRAME 1 fp=0x7101fe70 lr=0x82181988 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x7101ff00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
handle=0x000015e0 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ff4c0 lr=0x824a9f6c
[ 1] fp=0x700ff550 lr=0x82170210
[ 2] fp=0x700ff5c0 lr=0x8216f65c
[ 3] fp=0x700ff630 lr=0x821707f8
[ 4] fp=0x700ff6a0 lr=0x821c5418
[ 5] fp=0x700ff720 lr=0x82172d8c
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff510
frame=1 lr=0x82170210 saved-r31=0x700ff550 saved-r30=0x00000000
frame=2 lr=0x8216f65c saved-r31=0x700ff5c0 saved-r30=0x00000000
frame=3 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000
frame=4 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000
frame=5 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=16 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=16 pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 r3=0x00000000 r30=0x00000000 r31=0x000015e0
FRAME 0 fp=0x7151bdf0 lr=0x824ac578 saved r31=0x828f4070 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 1 fp=0x7151be70 lr=0x8217057c saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x7151bf00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
=== Dump-addr ===
addr=0x828f3d08
+0x00: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................
+0x10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x20: 00 00 00 00 00 00 00 00 00 00 00 07 01 00 00 00 | be32=00000000 00000000 00000007 01000000 | ................
+0x30: 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff | be32=00000000 00000000 00000000 ffffffff | ................
+0x40: 00 00 00 00 00 00 00 00 00 00 10 10 00 00 10 0c | be32=00000000 00000000 00001010 0000100c | ................
+0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x70: 00 00 00 01 82 8f 3d 08 00 00 00 00 00 00 00 00 | be32=00000001 828f3d08 00000000 00000000 | ......=.........
addr=0x828f4070
+0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................
+0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 15 e4 | be32=ffffffff 00000000 00000000 000015e4 | ................
+0x20: 00 00 15 e0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=000015e0 00000000 00000000 00000000 | ................
+0x30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 | be32=00000000 00000000 00000000 00000008 | ................
+0x40: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................
+0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x60: 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000001 00000000 00000000 00000000 | ................
+0x70: 00 00 00 01 00 00 00 00 00 00 00 00 ff ff 00 00 | be32=00000001 00000000 00000000 ffff0000 | ................
2026-05-04T15:04:33.038474Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3888 instructions=50000008 import_calls=407415 unimplemented=0 path=sylpheed.iso
2026-05-04T15:04:33.047643Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=66.000 min=66.000 max=66.000 mean=66.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 2
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 79315
counter kernel.calls{name=RtlLeaveCriticalSection} = 79315
counter kernel.calls{name=XexCheckExecutablePrivilege} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 1
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 394
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 88
counter kernel.calls{name=NtReadFile} = 346
counter kernel.calls{name=NtClose} = 544
counter kernel.calls{name=RtlNtStatusToDosError} = 35
counter kernel.calls{name=ExCreateThread} = 18
counter scheduler.spawn.ok = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 94889
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=RtlInitAnsiString} = 167
counter kernel.calls{name=NtOpenFile} = 49
counter kernel.calls{name=NtQueryVolumeInformationFile} = 16
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryInformationFile} = 380
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55701
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtSetInformationFile} = 77
counter kernel.calls{name=NtWriteFile} = 43
counter kernel.calls{name=NtSetEvent} = 334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 2
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=KeWaitForSingleObject} = 1
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=KeEnterCriticalRegion} = 3
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=KeLeaveCriticalRegion} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 94828
counter kernel.calls{name=XamUserGetSigninState} = 4
counter kernel.calls{name=XamUserGetXUID} = 1