chore: track audit-runs summary artifacts (md/csv/diff/txt/json/etc)

Snapshot of every non-log artifact under audit-runs/ from audits 003
through 058: findings.md per audit, comparison CSVs, probe diffs,
schema docs, register-dump txts, lr-trace JSONL streams, the saved
canary patch diffs, etc. ~284 files / ~52 MB total.

Excluded (per .gitignore): probe stdout/stderr/log streams (the raw
firehose), guest-memory dumps under audit-026/027/029 (4.5 GB of
.bin files; *.bin pattern added to .gitignore this commit).

Also adds the orphan audit-058-sub825070F0-activation directory that
a subagent accidentally created at project-root instead of
under xenia-rs/audit-runs/; relocated to its proper home.

Purpose: cross-machine continuity. With these summaries committed,
a fresh clone gives the next session the full per-audit context
(findings + tables + cascade predictions) without dependence on
local-only working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-10 21:36:41 +02:00
parent 609f586ed8
commit 8e709b0a24
284 changed files with 677656 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
diff --git a/src/xenia/cpu/cpu_flags.cc b/src/xenia/cpu/cpu_flags.cc
index 3ff067e15..467bc34b2 100644
--- a/src/xenia/cpu/cpu_flags.cc
+++ b/src/xenia/cpu/cpu_flags.cc
@@ -57,3 +57,9 @@ DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
"CPU");
+
+DEFINE_string(memory_dump_path, "",
+ "If non-empty, dump guest memory (heaps v0/v40/v80/v90/phys) to "
+ "this path on first XamNotifyCreateListener call. Format = "
+ "Memory::Save() raw (no signature/header).",
+ "CPU");
diff --git a/src/xenia/cpu/cpu_flags.h b/src/xenia/cpu/cpu_flags.h
index 38c4f98ba..02f15d5b2 100644
--- a/src/xenia/cpu/cpu_flags.h
+++ b/src/xenia/cpu/cpu_flags.h
@@ -35,4 +35,6 @@ DECLARE_bool(break_condition_truncate);
DECLARE_bool(break_on_debugbreak);
+DECLARE_string(memory_dump_path);
+
#endif // XENIA_CPU_CPU_FLAGS_H_
diff --git a/src/xenia/kernel/xam/xam_notify.cc b/src/xenia/kernel/xam/xam_notify.cc
index 2f88d5e7d..006c7e5d9 100644
--- a/src/xenia/kernel/xam/xam_notify.cc
+++ b/src/xenia/kernel/xam/xam_notify.cc
@@ -15,6 +15,15 @@
#include "xenia/kernel/xthread.h"
#include "xenia/xbox.h"
+#include <atomic>
+#include "xenia/base/byte_stream.h"
+#include "xenia/base/filesystem.h"
+#include "xenia/base/logging.h"
+#include "xenia/base/mapped_memory.h"
+#include "xenia/cpu/cpu_flags.h"
+#include "xenia/emulator.h"
+#include "xenia/memory.h"
+
namespace xe {
namespace kernel {
namespace xam {
@@ -42,7 +51,33 @@ dword_result_t XamNotifyCreateListener_entry(qword_t mask,
auto thread = kernel::XThread::GetCurrentThread();
auto ctx = thread->thread_state()->context();
auto type = xboxkrnl::xeKeGetCurrentProcessType(ctx);
- return xeXamNotifyCreateListener(mask, type == 2, max_version);
+ uint32_t result = xeXamNotifyCreateListener(mask, type == 2, max_version);
+
+ // AUDIT-023: dump guest memory on first XamNotifyCreateListener call.
+ static std::atomic<bool> dumped{false};
+ bool expected = false;
+ if (!cvars::memory_dump_path.empty() &&
+ dumped.compare_exchange_strong(expected, true)) {
+ std::filesystem::path path(cvars::memory_dump_path);
+ XELOGI("AUDIT-023: dumping guest memory to {} (mask={:#x})",
+ cvars::memory_dump_path, uint64_t(mask));
+ // Pre-size the file: PosixMappedMemory mmap's the existing file size.
+ constexpr size_t kReserve = size_t(2) * 1024 * 1024 * 1024;
+ filesystem::CreateEmptyFile(path);
+ std::filesystem::resize_file(path, kReserve);
+ auto map = MappedMemory::Open(path, MappedMemory::Mode::kReadWrite, 0,
+ kReserve);
+ if (map) {
+ ByteStream stream(map->data(), map->size());
+ kernel_state()->emulator()->memory()->Save(&stream);
+ map->Close(stream.offset());
+ XELOGI("AUDIT-023: wrote {} bytes", stream.offset());
+ } else {
+ XELOGE("AUDIT-023: failed to open dump path");
+ }
+ }
+
+ return result;
}
DECLARE_XAM_EXPORT1(XamNotifyCreateListener, kNone, kImplemented);

View File

@@ -0,0 +1,447 @@
[i] dump size: 216004608 bytes (206.0 MiB)
[i] heap v00000000 base=0x00000000 size=0x40000000 pages=262144 ps=4096
[i] committed_pages=447 cursor_after=0x3bf000
[i] heap v40000000 base=0x40000000 size=0x3f000000 pages=16128 ps=65536
[i] committed_pages=57 cursor_after=0x76e800
[i] heap v80000000 base=0x80000000 size=0x10000000 pages=4096 ps=65536
[i] committed_pages=146 cursor_after=0x1096800
[i] heap v90000000 base=0x90000000 size=0x10000000 pages=65536 ps=4096
[i] committed_pages=0 cursor_after=0x1116800
[i] heap physical base=0x00000000 size=0x20000000 pages=131072 ps=4096
[i] committed_pages=48105 cursor_after=0xcdff800
[i] total parsed bytes: 0xcdff800; remaining tail: 0
=== addr 0x828e1f08 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 40111890 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f0000 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 3f800000
ours : 00000000 00000000 00000000 3f800000
+0010 canary: 00000000 00000000 3f800000 00000000
ours : 00000000 00000000 3f800000 00000000
DIFF +0020 canary: bc359d60 00000000 00000000 00000000
DIFF ours : 4023ed60 00000000 00000000 00000000
DIFF +0030 canary: 00000000 00000000 bc359dc0 00000001
DIFF ours : 00000000 00000000 4023edc0 00000001
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0050 canary: bc359e20 00000002 00000000 00000000
DIFF ours : 4023ee20 00000002 00000000 00000000
DIFF +0060 canary: 00000000 00000000 bc359e80 00000003
DIFF ours : 00000000 00000000 4023ee80 00000003
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f1000 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: bc35d7e0 00000024 00000000 00000000
DIFF ours : 402427e0 00000024 00000000 00000000
DIFF +0010 canary: 00000000 00000000 bc35d840 00000025
DIFF ours : 00000000 00000000 40242840 00000025
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0030 canary: bc35d8a0 00000026 00000000 00000000
DIFF ours : 402428a0 00000026 00000000 00000000
DIFF +0040 canary: 00000000 00000000 bc35d900 00000027
DIFF ours : 00000000 00000000 40242900 00000027
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 3f800000 00000000
ours : 00000000 00000000 3f800000 00000000
DIFF +0070 canary: bc35d960 00000000 00000000 00000000
DIFF ours : 40242960 00000000 00000000 00000000
=== addr 0x828f2000 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0010 canary: 00000000 00000000 3f800000 00000000
ours : 00000000 00000000 3f800000 00000000
DIFF +0020 canary: bc361560 00000000 00000000 00000000
DIFF ours : 40246560 00000000 00000000 00000000
DIFF +0030 canary: 00000000 00000000 bc3615c0 00000001
DIFF ours : 00000000 00000000 402465c0 00000001
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0050 canary: bc361620 00000002 00000000 00000000
DIFF ours : 40246620 00000002 00000000 00000000
DIFF +0060 canary: 00000000 00000000 bc361680 00000003
DIFF ours : 00000000 00000000 40246680 00000003
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f3000 (canary heap=v80000000 status=committed) ===
+0000 canary: 820b606c 00000000 00000000 00000000
ours : 820b606c 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 40000000
ours : 00000000 00000000 00000000 40000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f3100 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0010 canary: 01010000 820b6178 00000000 00000000
ours : 01010000 820b6178 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f3d00 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 ffffffff 00000000
DIFF ours : 00000001 00000000 ffffffff 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0030 canary: 00000007 01010000 00000000 00000000
DIFF ours : 00000007 01000000 00000000 00000000
+0040 canary: 00000000 ffffffff 00000000 00000000
ours : 00000000 ffffffff 00000000 00000000
DIFF +0050 canary: f8000024 f8000020 00000000 00000000
DIFF ours : 00001024 00001020 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000001 828f3d08
ours : 00000000 00000000 00000001 828f3d08
=== addr 0x828f3d08 (canary heap=v80000000 status=committed) ===
+0000 canary: ffffffff 00000000 00000000 00000000
ours : ffffffff 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000007 01010000
DIFF ours : 00000000 00000000 00000007 01000000
+0030 canary: 00000000 00000000 00000000 ffffffff
ours : 00000000 00000000 00000000 ffffffff
DIFF +0040 canary: 00000000 00000000 f8000024 f8000020
DIFF ours : 00000000 00000000 00001024 00001020
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000001 828f3d08 00000000 00000000
ours : 00000001 828f3d08 00000000 00000000
=== addr 0x828f3d80 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0010 canary: 00000000 00000000 00000001 00000000
DIFF ours : 00000000 00000001 00000001 40929c00
DIFF +0020 canary: 00000000 00000001 01010000 00000000
DIFF ours : 00000001 00000001 01000000 00000000
+0030 canary: 00000000 00000000 ffffffff 00000000
ours : 00000000 00000000 ffffffff 00000000
DIFF +0040 canary: 00000000 00000000 bc32c8a0 0000096a
DIFF ours : 00000000 00000000 402118a0 0000098d
DIFF +0050 canary: 01010000 00000000 00000000 00000000
DIFF ours : 01000000 00000000 00000000 00000000
+0060 canary: ffffffff 00000000 00000000 00000000
ours : ffffffff 00000000 00000000 00000000
DIFF +0070 canary: bc32cd00 00000962 00000000 00000000
DIFF ours : 40211d00 00000974 00000000 00000000
=== addr 0x828f3e00 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 01000000 00000000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 ffffffff 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 40541f80 00000002
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 40541f40 00000001 00000000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 40541f00 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 01000000 00000000 00000000 00000000
=== addr 0x828f3f00 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 bc65c8c0 00000000 00000000
DIFF ours : 00000000 405418c0 00000000 00000000
DIFF +0010 canary: bc22c840 00000000 ffffffff ffffffff
DIFF ours : 40111840 00000000 ffffffff ffffffff
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0030 canary: 00000000 00000000 f800000c 00000000
DIFF ours : 00000000 000012c0 00001004 00000000
DIFF +0040 canary: 00000000 00000002 ffffffff ffffffff
DIFF ours : 00000000 00000003 ffffffff ffffffff
+0050 canary: 00000000 00000000 00000000 ffffffff
ours : 00000000 00000000 00000000 ffffffff
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 4c941000 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : fffffffd 00000000 00000000 00000000
=== addr 0x828f4070 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 01000000 00000000 00000000 00000000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : ffffffff 00000000 00000000 000015ec
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 000015e4 00000000 00000000 00000000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 00000008
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : ffffffff 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 ffff0000
=== addr 0x828f40b0 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : ffffffff 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 ffff0000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 ffff0000 00000000 ffff0000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
=== addr 0x828f40c0 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 ffff0000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 ffff0000 00000000 ffff0000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
=== addr 0x828f40d0 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 ffff0000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 ffff0000 00000000 ffff0000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f40e0 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 00000000 ffff0000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 ffff0000 00000000 ffff0000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00100000 00200000 00000000 00000004
=== addr 0x828f40f0 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 ffff0000 00000000 ffff0000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0040 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00100000 00200000 00000000 00000004
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00040000 00080000 00000000 00400000
=== addr 0x828f4100 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000001 00000000 00000000
DIFF +0010 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 3f19999a 00000000 3f19999a 00000000
DIFF +0030 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000001 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00100000 00200000 00000000 00000004
DIFF +0060 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00040000 00080000 00000000 00400000
DIFF +0070 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00800000 00000001 00020000 00000008
=== addr 0x828f4800 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 00000000 00000000 00000000 00000000
DIFF ours : 01c60e66 4ee94000 00000000 405427c0
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : ffffffff 00000000 00000000 00000014
DIFF +0030 canary: 00000000 00000000 01010000 00000000
DIFF ours : 00000001 00000000 01000000 00000000
DIFF +0040 canary: 58454e00 f8000034 ffffffff 00000000
DIFF ours : 00000000 00000000 ffffffff 00000000
DIFF +0050 canary: 00000000 00000000 00000000 00000000
DIFF ours : 00000000 00000000 4024a2e0 00000008
DIFF +0060 canary: 00000000 00000000 00000000 bc365180
DIFF ours : 00000000 00000000 00000000 4024a1a0
DIFF +0070 canary: 00000003 00000000 bc3651e0 00000000
DIFF ours : 0000000f 00000000 4024a200 00000000
=== addr 0x828f4838 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 01010000 00000000 58454e00 f8000034
DIFF ours : 01000000 00000000 00000000 00000000
+0010 canary: ffffffff 00000000 00000000 00000000
ours : ffffffff 00000000 00000000 00000000
DIFF +0020 canary: 00000000 00000000 00000000 00000000
DIFF ours : 4024a2e0 00000008 00000000 00000000
DIFF +0030 canary: 00000000 bc365180 00000003 00000000
DIFF ours : 00000000 4024a1a0 0000000f 00000000
DIFF +0040 canary: bc3651e0 00000000 00000000 bc3652e0
DIFF ours : 4024a200 00000000 00000000 40542240
DIFF +0050 canary: 00000008 00000000 00000002 00000002
DIFF ours : 00000010 00000000 0000000f 0000000f
DIFF +0060 canary: 00000000 f800002c f8000028 00000001
DIFF ours : 00000000 00001030 00001028 00000001
DIFF +0070 canary: 00000000 00000000 00000000 00000001
DIFF ours : 00000000 00000001 828f4070 00000001
=== addr 0x828f4900 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828f4ab0 (canary heap=v80000000 status=committed) ===
DIFF +0000 canary: 40000000 00000000 00000000 825fb898
DIFF ours : 40005000 00000000 00000000 825fb898
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828fbc00 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0010 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0020 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0030 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0040 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0050 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0060 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0070 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
=== addr 0x828fbc80 (canary heap=v80000000 status=committed) ===
+0000 canary: 00000000 00000000 00000000 00000000
ours : 00000000 00000000 00000000 00000000
+0010 canary: 58544844 00000001 00000000 535107d4
ours : 58544844 00000001 00000000 535107d4
+0020 canary: 00000001 00010000 00970000 00000000
ours : 00000001 00010000 00970000 00000000
+0030 canary: 00000000 00000000 00000000 58414348
ours : 00000000 00000000 00000000 58414348
+0040 canary: 00000001 0000036a 00180001 00020003
ours : 00000001 0000036a 00180001 00020003
+0050 canary: 00630000 00010014 00000000 000c0000
ours : 00630000 00010014 00000000 000c0000
+0060 canary: 00000000 00000000 00000000 00000002
ours : 00000000 00000000 00000000 00000002
+0070 canary: 00040005 00640000 00020014 00000000
ours : 00040005 00640000 00020014 00000000
=== TOTAL DIFFERING ROWS: 100 ===

View File

@@ -0,0 +1,98 @@
#!/usr/bin/env python3
"""
Compare canary's memory dump (Memory::Save format) against our --dump-addr
output for a list of target addresses. Output unified diff highlighting
divergent 4-byte words.
"""
import re
import struct
import sys
sys.path.insert(0, '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff')
from parse_dump import parse, read_addr
DUMP_LOG_RE = re.compile(r'^\s*addr=0x([0-9a-fA-F]+)\s*$')
DUMP_LINE_RE = re.compile(r'^\s*\+0x([0-9a-fA-F]+):\s*((?:[0-9a-f]{2} ){15}[0-9a-f]{2})')
def parse_ours_log(path):
"""Parse ours' dump-addr log into {addr -> bytes}."""
with open(path) as f:
cur_addr = None
cur_bytes = bytearray()
out = {}
for line in f:
m = DUMP_LOG_RE.match(line)
if m:
if cur_addr is not None and cur_bytes:
out[cur_addr] = bytes(cur_bytes)
cur_addr = int(m.group(1), 16)
cur_bytes = bytearray()
continue
m = DUMP_LINE_RE.match(line)
if m and cur_addr is not None:
hexbytes = m.group(2).split()
cur_bytes.extend(int(b, 16) for b in hexbytes)
if cur_addr is not None and cur_bytes:
out[cur_addr] = bytes(cur_bytes)
return out
def fmt(addr, bytes_):
"""Return list of (offset, [4*be32 strings]) tuples."""
rows = []
for i in range(0, len(bytes_), 16):
row = bytes_[i:i+16]
words = []
for w in range(0, len(row), 4):
if w + 4 <= len(row):
words.append(f"{struct.unpack('>I', row[w:w+4])[0]:08x}")
rows.append((addr + i, words))
return rows
def main():
canary_dump = sys.argv[1] if len(sys.argv) > 1 else '/tmp/audit-023-canary-memory.dump'
ours_log = sys.argv[2] if len(sys.argv) > 2 else '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff/ours-dump.log'
extra_log = sys.argv[3] if len(sys.argv) > 3 else '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff/ours-extra.log'
heap_index, data = parse(canary_dump)
print()
ours = parse_ours_log(ours_log)
if extra_log:
try:
ours.update(parse_ours_log(extra_log))
except FileNotFoundError:
pass
diffs_total = 0
for addr in sorted(ours.keys()):
our_bytes = ours[addr]
n = len(our_bytes)
canary_bytes, name, _, _, status = read_addr(heap_index, data, addr, n)
print(f"\n=== addr {addr:#010x} (canary heap={name} status={status}) ===")
if canary_bytes is None:
print(f" canary: {status}")
continue
canary_rows = fmt(addr, canary_bytes)
our_rows = fmt(addr, our_bytes)
for (a1, w1), (a2, w2) in zip(canary_rows, our_rows):
assert a1 == a2
diff_marks = []
for c, o in zip(w1, w2):
if c == o:
diff_marks.append(" ")
else:
diff_marks.append(" !! ")
row_has_diff = any(c != o for c, o in zip(w1, w2))
if row_has_diff:
diffs_total += 1
canary_line = " ".join(w1)
our_line = " ".join(w2)
mark = "DIFF " if row_has_diff else " "
print(f" {mark}+{a1-addr:04x} canary: {canary_line}")
print(f" {mark} ours : {our_line}")
if row_has_diff:
marks = "".join(f" {m} " for m in diff_marks).rstrip()
# Print marker line if useful
# print(f" {marks}")
print(f"\n=== TOTAL DIFFERING ROWS: {diffs_total} ===")
if __name__ == "__main__":
main()

View File

@@ -0,0 +1,653 @@
Finished `release` profile [optimized] target(s) in 0.21s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x828F4070,0x828F40B0,0x828F40C0,0x828F40D0,0x828F40E0,0x828F40F0,0x828F4100,0x828E1F08,0x828F3D08,0x828F0000,0x828F4838,0x828F4ab0 -n 50000000`
2026-05-07T18:36:51.361020Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-07T18:36:51.365877Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-07T18:36:51.365894Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-07T18:36:51.433949Z  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-07T18:36:51.435719Z  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-07T18:36:51.443023Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-07T18:36:51.448146Z  INFO cmd_exec: xenia_rs: dump addresses armed: 12 (0x828f4070, 0x828f40b0, 0x828f40c0, 0x828f40d0, 0x828f40e0, 0x828f40f0, 0x828f4100, 0x828e1f08, 0x828f3d08, 0x828f0000, 0x828f4838, 0x828f4ab0) path=sylpheed.iso
2026-05-07T18:36:51.449654Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso
2026-05-07T18:36:51.449666Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-07T18:36:51.454422Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.454452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.454521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.659459Z  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
2026-05-07T18:36:51.659513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.659755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660105Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660132Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660142Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660398Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.660406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661085Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1034 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1038 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x103c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1040 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.661752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1044 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.662020Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.662035Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1054 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.662622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1044) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663361Z  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=0x105c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x106c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663637Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x1070 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663648Z  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=0x1074 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.663661Z  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=0x1078 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.667150Z  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=0x107c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669270Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1088) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669774Z  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=0x1090 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669806Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.669987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x109c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.670020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.670158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.670169Z  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=0x10a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.670179Z  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=0x10ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.677412Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.677687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678022Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10cc hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678652Z  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=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.678974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.679021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.679251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.679263Z  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=0x10e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.679278Z  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=0x10ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.683493Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.683649Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.683650Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-07T18:36:51.683657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10fc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:51.683662Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-07T18:36:52.585024Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-07T18:36:52.604873Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.604896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1108 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.606135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.606977Z  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=0x111c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1128 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x1130 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607688Z  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=0x1134 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.607700Z  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=0x1138 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.773535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.773824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778339Z  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=0x1148 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778376Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778601Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778629Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1154 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778797Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x115c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778808Z  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=0x1160 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.778819Z  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=0x1164 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.833105Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.833444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.834282Z  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=0x117c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.834350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.834766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.834804Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1188 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.834861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x118c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.835096Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1190 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.835109Z  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=0x1194 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.835121Z  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=0x1198 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.873962Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.873988Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x119c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.874023Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.874028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x11a0 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.874321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.928868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929270Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929441Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.929949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930595Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.930922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.931897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.932956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.933943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934445Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934769Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.934964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935137Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.935957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.936933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937254Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937576Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.937904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.938873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939357Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.939841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.940005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.940138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.941977Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.941987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12c0 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.942285Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.942293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12cc hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.943847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.944665Z  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=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.944713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12f0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12f4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12f8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945540Z  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=0x12fc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.945553Z  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=0x1300 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.946325Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.946334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x1304 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.946438Z  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-07T18:36:52.946453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x130c hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.946492Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.946497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x1310 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.950745Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.952605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.952853Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1324) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953379Z  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=0x132c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1338 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x133c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1340 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953956Z  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=0x1344 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.953966Z  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=0x1348 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.954532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:52.955183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.019359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1358 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.027572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x135c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.031425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.031659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.031907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.032208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.032464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.032721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.032980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.033250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.033478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.033703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.033935Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.034179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.034471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.039463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.044890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.045902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046638Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.046963Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047617Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.047938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048260Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048737Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.048902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049377Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049539Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.049856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050656Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050815Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.050981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.051140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.051346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.051511Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.051742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.051946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.052113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.052307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.055471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.057735Z  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=0x1498 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.057775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058154Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058342Z  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=0x14b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058352Z  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=0x14b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.058750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.059203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.061595Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.064883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.073632Z  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=0x14cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.073670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074279Z  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=0x14e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074289Z  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=0x14e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.074684Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.080360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.080531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.080701Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.080882Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.081149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.081413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.081592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.081878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082383Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.082908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083080Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.083946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.183480Z  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=0x1540 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.183539Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.183959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.183987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x154c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.184032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.184172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.184183Z  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=0x1558 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.184199Z  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=0x155c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.184683Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.186763Z  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=0x1564 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.186837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1570 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187387Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1574 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187525Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1578 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187536Z  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=0x157c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187546Z  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=0x1580 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.187988Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.193190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.193368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.193535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.193700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.193869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.194035Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.194201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.194370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.194535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.194681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245174Z  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=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245235Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245956Z  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=0x15c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.245967Z  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=0x15cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.246466Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18593977 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.246705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.246745Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.246754Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15dc hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.249051Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.249062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15ec hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.254117Z  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=0x15f8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.254232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15fc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.255917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1600 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.255995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1604 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256126Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1614 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256174Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256240Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1624 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256317Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x162c hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256697Z  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=0x1634 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.256717Z  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=0x1638 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:53.257984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.158394Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-07T18:36:54.164074Z  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=0x1640 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.164199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1648 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x164c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1650 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1654 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166843Z  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=0x1658 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.166860Z  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=0x165c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.168330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.176419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.176979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.177570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.177960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.178339Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.178716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.179102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.179491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.179880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.180264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.180655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.181052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.181437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.181819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.182206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.182588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.182978Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.183362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.183746Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.184183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.184652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.185049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.185436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.185823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.186215Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.186606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.186999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.187407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.188048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.188442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.188827Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.189226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.189610Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.190004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.190431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.190819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.191211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.191593Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.192034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.192495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.192891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.193281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.193669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.194062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.194458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.194843Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.195234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.195620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.196091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.199119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.207519Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.207922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.208311Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.208696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.209082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.209462Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.209844Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.210243Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.210623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.211014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.211389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.211768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.212159Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.212543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.212942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.213328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.213715Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.214111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.214502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.214885Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.215272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.215656Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.216044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.216428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.216824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.217216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.217602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.217990Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.218372Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.218755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.219143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.219527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.219929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.220313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.220699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.221121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.221507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.221892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.222274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.222657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.223043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.223433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.223814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.224200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.224582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.224962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.225346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.225728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.226141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.226521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.226910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.227293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.227675Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.228060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.228442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.228820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.229232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.229611Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.230002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.230389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.230806Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.231239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.231641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.232040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.232429Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.232815Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.233206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.233592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.233982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.234370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.234760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.235148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.235572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.235960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.236347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.236739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.237122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.237504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.237887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.238326Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.238710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.239118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.239502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.239881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.240263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.240648Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.241037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.241426Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.241810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.242209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.242595Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.242978Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.243371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.243756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.244144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.244523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.244911Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.245296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.245679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.246068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.246556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.246952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.247340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.247724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.248113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.248494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.248881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.249326Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:54.253503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14c0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:55.293847Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:36:55.295612Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-07T18:36:55.296133Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3935 instructions=50000011 import_calls=407247 unimplemented=0 path=sylpheed.iso
2026-05-07T18:36:55.307548Z  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} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 79290
counter kernel.calls{name=RtlLeaveCriticalSection} = 79289
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 347
counter kernel.calls{name=NtClose} = 548
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 35
counter kernel.calls{name=ExCreateThread} = 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} = 94813
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryInformationFile} = 380
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55671
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtSetInformationFile} = 77
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=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=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 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} = 94757
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,653 @@
Finished `release` profile [optimized] target(s) in 0.22s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x828F0000,0x828F1000,0x828F2000,0x828F3000,0x828F3100,0x828F3D00,0x828F3D80,0x828F3E00,0x828F3F00,0x828F4800,0x828F4900,0x828FBC00,0x828FBC80 -n 50000000`
2026-05-07T18:37:30.179004Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-07T18:37:30.180373Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-07T18:37:30.180385Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-07T18:37:30.247809Z  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-07T18:37:30.248207Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=67.0 path=sylpheed.iso bytes=3497984
2026-05-07T18:37:30.252408Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-07T18:37:30.252530Z  INFO cmd_exec: xenia_rs: dump addresses armed: 13 (0x828f0000, 0x828f1000, 0x828f2000, 0x828f3000, 0x828f3100, 0x828f3d00, 0x828f3d80, 0x828f3e00, 0x828f3f00, 0x828f4800, 0x828f4900, 0x828fbc00, 0x828fbc80) path=sylpheed.iso
2026-05-07T18:37:30.252688Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso
2026-05-07T18:37:30.252695Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-07T18:37:30.257621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.257659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.257748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.464835Z  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
2026-05-07T18:37:30.464917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.465353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.465940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.465966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466000Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466032Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466048Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466488Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.466500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467581Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467587Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467628Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1034 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467701Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1038 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467787Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x103c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.467850Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1040 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.468139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1044 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.468244Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.468251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1054 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.468510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1044) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469103Z  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=0x105c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469237Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x106c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469374Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x1070 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469386Z  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=0x1074 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.469396Z  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=0x1078 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.473042Z  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=0x107c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.474922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475155Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1088) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475660Z  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=0x1090 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x109c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.475902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.476037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.476049Z  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=0x10a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.476058Z  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=0x10ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.477172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.477443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.477777Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.477785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10cc hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.478404Z  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=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.478454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.478692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.478729Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.478776Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.479015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.479029Z  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=0x10e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.479040Z  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=0x10ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.483284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.483448Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.483450Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-07T18:37:30.483456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10fc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:30.483463Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-07T18:37:31.384823Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-07T18:37:31.404693Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.404717Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1108 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.405936Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.406759Z  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=0x111c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.406818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1128 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x1130 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407477Z  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=0x1134 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.407488Z  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=0x1138 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.576455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.576747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581208Z  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=0x1148 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1154 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x115c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581691Z  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=0x1160 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.581700Z  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=0x1164 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.592733Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.593245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.594596Z  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=0x117c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.594677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595372Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1188 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595530Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x118c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1190 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595936Z  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=0x1194 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.595955Z  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=0x1198 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.635604Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.635630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x119c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.635661Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.635667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x11a0 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.635934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.691739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.691948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692319Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.692967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.693923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.694084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.694245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.694434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.694607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.694789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695717Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.695879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696197Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696357Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.696837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697159Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697475Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697794Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.697959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.698916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699243Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699405Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.699883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.700840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.701959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702593Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.702883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x116c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.704677Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.704687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12c0 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.704987Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.704994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12cc hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.706501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10b4) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.707338Z  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=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.707387Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.707944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.707987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12f0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.708042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12f4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.708386Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12f8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.708410Z  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=0x12fc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.708447Z  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=0x1300 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.709331Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.709342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x1304 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.709434Z  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-07T18:37:31.709440Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x130c hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.709477Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.709483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x1310 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.713487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.715104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.715369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1324) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.716409Z  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=0x132c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.716467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.716971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.717016Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1338 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.717078Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x133c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.717304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1340 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.717321Z  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=0x1344 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.717337Z  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=0x1348 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.718266Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.719285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.724712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1358 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.733117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x135c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.737478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.737711Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.737957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.738182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.738433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.738709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.738953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.739214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.739438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.739729Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.739950Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.740178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.740452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.744755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.748739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.748912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749550Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.749882Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.750040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.750224Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.750449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.750633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.750802Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.751053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.751245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.751407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.751564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.751837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752811Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.752978Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.753936Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.754886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.755998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756156Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756781Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.756977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1318) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.760094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.763156Z  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=0x1498 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.763251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.763984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764016Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764208Z  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=0x14b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764218Z  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=0x14b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.764668Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.765141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.767272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.770923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779289Z  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=0x14cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779918Z  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=0x14e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.779928Z  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=0x14e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.780285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.785918Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.786892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787056Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787378Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787548Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.787882Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.788045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.788191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.883835Z  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=0x1540 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.883918Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.884655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.884702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x154c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.884773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.885004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.885029Z  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=0x1558 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.885056Z  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=0x155c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.885738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.887652Z  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=0x1564 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.887690Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888130Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1570 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1574 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888349Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1578 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888360Z  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=0x157c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888370Z  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=0x1580 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.888800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.893692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.893875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.894865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.895027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.895174Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.944465Z  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=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.944523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945232Z  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=0x15c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945242Z  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=0x15cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945735Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18593977 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.945963Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.946003Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.946009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15dc hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.948182Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.948191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15ec hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.952797Z  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=0x15f8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.952873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15fc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1600 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1604 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954415Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1614 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954461Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954525Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1624 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954598Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954605Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x162c hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954963Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.954982Z  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=0x1634 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.955000Z  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=0x1638 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:31.956247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1358) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.856655Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-07T18:37:32.861772Z  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=0x1640 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.861874Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.863762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1648 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.863834Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x164c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.863995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1650 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.864500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1654 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.864519Z  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=0x1658 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.864537Z  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=0x165c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.866015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.874116Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.874504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.874896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.875288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.875686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.876076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.876467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.876854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.877256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.877645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.878044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.878457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.878877Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.879274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.879661Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.880079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.880463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.880841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.881251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.881640Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.882036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.882462Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.882845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.883245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.883629Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.884032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.884415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.884804Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.885238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.885623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.886009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.886393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.886776Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.887176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.887562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.887960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.888345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.888721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.889119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.889502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.889887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.890273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.890838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.891510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.892004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.892398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.892781Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.893173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.893634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.896736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.904928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.905323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.905709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.906097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.906478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.906860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.907247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.907633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.908018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.908398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.908779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.909161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.909546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.909931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.910316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.910704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.911105Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.911835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.912242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.912628Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.913015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.913398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.913778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.914162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.914550Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.914944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.915325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.915705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.916087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.916468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.916848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.917235Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.917614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.917997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.918385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.918767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.919153Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.919541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.919928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.920311Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.920693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.921082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.921456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.921837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.922220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.922600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.922980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.923359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.923738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.924129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.924513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.924899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.925281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.925700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.926091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.926473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.926853Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.927238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.927627Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.928016Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.928396Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.928775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.929162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.929554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.929956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.930365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.930765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.931158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.931545Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.931939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.932328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.932734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.933123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.933506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.933895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.934288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.934672Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.935055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.935436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.935819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.936202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.936583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.936973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.937350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.937728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.938144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.938530Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.938960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.939345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.939725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.940268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.940656Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.941053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.941436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.941821Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.942211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.942594Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.942983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.943365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.943752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.944144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.944527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.944914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.945406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.945795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.946181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.946561Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.947010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x135c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:32.951104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14c0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:33.991386Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-07T18:37:33.993106Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-07T18:37:33.993643Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3814 instructions=50000011 import_calls=407247 unimplemented=0 path=sylpheed.iso
2026-05-07T18:37:34.001938Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=67.000 min=67.000 max=67.000 mean=67.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 79290
counter kernel.calls{name=RtlLeaveCriticalSection} = 79289
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 347
counter kernel.calls{name=NtClose} = 548
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 35
counter kernel.calls{name=ExCreateThread} = 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} = 94813
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryInformationFile} = 380
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55671
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtSetInformationFile} = 77
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=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=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 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} = 94757
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,35 @@
Finished `release` profile [optimized] target(s) in 0.22s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x82124000,0x82124100,0x82124800,0x82124900 -n 5000000`
2026-05-07T18:39:11.760982Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-07T18:39:11.762521Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-07T18:39:11.762542Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-07T18:39:11.832452Z  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-07T18:39:11.832945Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=70.0 path=sylpheed.iso bytes=3497984
2026-05-07T18:39:11.837243Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-07T18:39:11.837380Z  INFO cmd_exec: xenia_rs: dump addresses armed: 4 (0x82124000, 0x82124100, 0x82124800, 0x82124900) path=sylpheed.iso
2026-05-07T18:39:11.837542Z  INFO cmd_exec: xenia_rs: starting execution limit=5000000 path=sylpheed.iso
2026-05-07T18:39:11.837550Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-07T18:39:11.842149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(5000000) ips=None
2026-05-07T18:39:11.842177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(5000000) ips=None
2026-05-07T18:39:11.842250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(5000000) ips=None
2026-05-07T18:39:12.042842Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=5000000 path=sylpheed.iso max=Some(5000000) ips=None
2026-05-07T18:39:12.043798Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-07T18:39:12.044037Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=283 instructions=5000004 import_calls=31016 unimplemented=0 path=sylpheed.iso
2026-05-07T18:39:12.048628Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=70.000 min=70.000 max=70.000 mean=70.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 1
counter kernel.calls{name=NtAllocateVirtualMemory} = 2
counter kernel.calls{name=KeGetCurrentProcessType} = 1
counter kernel.calls{name=RtlInitializeCriticalSection} = 26
counter kernel.calls{name=RtlEnterCriticalSection} = 15464
counter kernel.calls{name=RtlLeaveCriticalSection} = 15463
counter kernel.calls{name=XexCheckExecutablePrivilege} = 1
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 1
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 48
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 3
counter kernel.calls{name=NtCreateEvent} = 1

View File

@@ -0,0 +1,142 @@
#!/usr/bin/env python3
"""
Parse canary's Memory::Save dump.
Format (canary memory.cc Memory::Save -> heaps_.<heap>.Save iterates pages):
for each heap in [v00000000, v40000000, v80000000, v90000000, physical]:
for each page (heap_size / page_size pages):
uint64_t qword (LE host-endian)
if state != 0 and (state bits) & kMemoryAllocationCommit (=2):
page_size raw bytes (host-endian, but guest PPC big-endian written through guest stores)
PageEntry bitfield (LE qword):
base_address : 20 (bits 0-19)
region_page_count : 20 (bits 20-39)
allocation_protect : 4 (bits 40-43)
current_protect : 4 (bits 44-47)
state : 2 (bits 48-49) -- 0x1 reserve, 0x2 commit
reserved : 14
"""
import struct
import sys
HEAPS = [
("v00000000", 0x00000000, 0x40000000, 4096),
("v40000000", 0x40000000, 0x3F000000, 65536),
("v80000000", 0x80000000, 0x10000000, 65536),
("v90000000", 0x90000000, 0x10000000, 4096),
("physical", 0x00000000, 0x20000000, 4096), # logical name, separate space
]
K_COMMIT = 0x2
def parse(path):
"""Walk the dump; yield (heap_name, page_idx, qword, page_offset_in_file_or_None)."""
with open(path, "rb") as f:
data = f.read()
print(f"[i] dump size: {len(data)} bytes ({len(data)/1024/1024:.1f} MiB)")
cursor = 0
heap_index = {}
for name, base, size, page_size in HEAPS:
page_count = size // page_size
print(f"[i] heap {name} base={base:#010x} size={size:#x} pages={page_count} ps={page_size}")
heap_meta = {
"base": base, "size": size, "page_size": page_size,
"page_count": page_count,
"pages": {}, # page_idx -> (qword, page_data_offset_or_None)
"start_offset": cursor,
}
committed = 0
for i in range(page_count):
if cursor + 8 > len(data):
print(f"[!] truncated reading page header heap={name} page={i} cursor={cursor}")
heap_index[name] = heap_meta
return heap_index, data
qword = struct.unpack_from("<Q", data, cursor)[0]
cursor += 8
# Empirically: gcc/clang lays out PageEntry bitfields with
# state at bits 60-61 (not 48-49 as a naive declaration-order
# mapping would predict). Determined by walking the dump and
# confirming cursor lands exactly at file size.
state = (qword >> 60) & 0x3
if state != 0 and (state & K_COMMIT):
page_off = cursor
cursor += page_size
committed += 1
heap_meta["pages"][i] = (qword, page_off)
if cursor > len(data):
print(f"[!] truncated reading page bytes heap={name} page={i}")
heap_index[name] = heap_meta
return heap_index, data
else:
heap_meta["pages"][i] = (qword, None)
heap_meta["end_offset"] = cursor
heap_meta["committed_pages"] = committed
heap_index[name] = heap_meta
print(f"[i] committed_pages={committed} cursor_after={cursor:#x}")
print(f"[i] total parsed bytes: {cursor:#x}; remaining tail: {len(data)-cursor}")
return heap_index, data
def read_addr(heap_index, data, guest_addr, length):
"""Read length bytes starting at guest_addr from the canary memory dump.
Picks the right heap by base/size."""
for name in ("v00000000", "v40000000", "v80000000", "v90000000"):
meta = heap_index[name]
if meta["base"] <= guest_addr < meta["base"] + meta["size"]:
page_size = meta["page_size"]
rel = guest_addr - meta["base"]
page_idx = rel // page_size
page_off_in = rel % page_size
qword, page_off_in_file = meta["pages"][page_idx]
if page_off_in_file is None:
return None, name, page_idx, qword, "uncommitted"
# collect bytes spanning multiple pages if needed
out = bytearray()
remaining = length
while remaining > 0:
qword2, off2 = meta["pages"][page_idx]
if off2 is None:
return None, name, page_idx, qword2, "uncommitted (mid-read)"
in_page_avail = page_size - page_off_in
take = min(remaining, in_page_avail)
out.extend(data[off2 + page_off_in : off2 + page_off_in + take])
remaining -= take
page_idx += 1
page_off_in = 0
return bytes(out), name, None, qword, "committed"
return None, None, None, None, "no heap"
def main():
if len(sys.argv) < 2:
print("usage: parse_dump.py <dump_path> [addr1[,addr2,...]] [length]")
sys.exit(1)
path = sys.argv[1]
addr_args = sys.argv[2] if len(sys.argv) > 2 else "0x828F4070"
length = int(sys.argv[3], 0) if len(sys.argv) > 3 else 0x100
addrs = [int(a, 0) for a in addr_args.split(",")]
heap_index, data = parse(path)
print()
for addr in addrs:
res, heap_name, page_idx, qword, status = read_addr(heap_index, data, addr, length)
print(f"=== addr {addr:#010x} (heap={heap_name}) status={status} ===")
if res is None:
print(f" qword={qword:#x} page_idx={page_idx}")
continue
# Pretty-print: 16 bytes per row, big-endian word interpretation
for i in range(0, len(res), 16):
row = res[i:i+16]
hexpart = " ".join(f"{b:02x}" for b in row)
words = []
for w in range(0, len(row), 4):
if w+4 <= len(row):
val = struct.unpack(">I", row[w:w+4])[0]
words.append(f"{val:08x}")
print(f" +{i:04x}: {hexpart:<48} | {' '.join(words)}")
print()
if __name__ == "__main__":
main()