lane AC: the tail DOES draw under active contents -- the trade-raid gate, decoded and fired

TradeManager::Slot13RngCalleeA, entered 0 times in every measurement any lane
had taken, is entered 1x/turn once a player fleet is parked on a trade-sector
node, and OnAllCombatDone_Tail's RNG word delta goes 0 -> 1. Lane W3's open
risk is realised, not retired: the RNG ledger and the standalone's generator
model need extending by one draw site.

The gate is neither freighters nor a deployed spy. It is a fleet whose LocID
resolves to a node of kind 2 (TradeSector), positioned bit-equal to the
sector, whose owner's bit is set in the sector's tscr mask -- which the
CCC_ComRaid tech sets, taking tscr from 252 to 253 and setting ServerPlayer
CnRad. Before the tech the game refuses in as many words: 'Alpha Fleet cannot
raid trade sector.'

Control: same guest, same build, same shim.cfg.l3probe, one End Turn on lane
L3's turn-15 save -> all three inner callees 0, tail delta 0. Guest adoption:
ref-turn2 hooks=off reproduces the published determinism oracle exactly.

Corrects lane L3 §3.5 (the turn-15 save already had a freighter in service --
the AI's -- so 'freighters' was falsified before this lane started) and lane
V2's 'trade slot 13 is draw-free'. The spy half is decoded but NOT reached:
no AI system in that game has an asteroid belt, so a deploy was impossible,
and spies2 is therefore still untested and stays a rule-6 hypothesis.

Two new corpus saves; expect the coverage ratchet to break on CnRad,
tscr=253, three rt records and a fleet whose LocID is a TradeSector.
This commit is contained in:
alex 2026-09-08 21:32:27 -04:00
parent f84ffc0be9
commit 2e7ed8f288
8 changed files with 993 additions and 0 deletions

View file

@ -0,0 +1,387 @@
# The tail *does* draw under active contents — the trade-raid gate, decoded and fired
- **Type:** control-flow (static decode + live measurement)
- **Status:** **verified** for the trade half; the spy half is decoded but **not reached** and is
labelled a hypothesis (rule 6)
- **Confidence:** high on the trade half — the callees were entered live, the RNG word delta moved,
and the state that moved it was reached by playing a stock game with no file edited
- **Owner / date:** lane AC · 2026-09-08 · guest **VM141** (`sots-re-win10-b`, 192.168.10.143)
- **Predicts / corrects:** lane W3's open risk (**not** retired — realised), lane L3's
`trade-and-spy-workload.md` §3.5, lane V2's "closure 185 functions, draw-free" reading of the
trade slots
---
## 0. Headline
> **Yes. The strategic-turn tail draws RNG once its containers are *active*.**
> `StrategyServer::OnAllCombatDone_Tail` consumes **1 word per turn** in the state this lane built,
> against **0** on the same guest, same build and same config on the state lane L3 left.
> `TradeManager::Slot13RngCalleeA` — entered **0** times in every measurement any lane had ever
> taken — was entered **1×/turn on both instrumented turns**, and `Slot13RngCalleeB` on one of them.
>
> **Lane W3's open risk is realised, not retired. The RNG ledger and the standalone's generator
> model need extending by one draw site.**
And the condition that does it is **not** the one lane L3 named. Freighters in service do not do it
and a deployed spy would not do it either. The gate is:
> **a player-owned fleet parked exactly on a trade-sector node, whose owner's bit is set in that
> sector's `tscr` mask — which is set by researching `CCC_ComRaid` ("Commerce Raiding").**
That is the trade-raid roll. It had never fired in this campaign because no lane had ever
researched Commerce Raiding, and without it the game refuses the order in as many words:
**`Alpha Fleet cannot raid trade sector.`**
---
## 1. What was measured
Instrument: `shim.cfg.l3probe` verbatim (lane L3's, = lane H's `hp11` + `watch.mode=cont`), shim
build `ac-7e726b9-20260909T0017Z`, cross-built on the dev box. All eleven probes reported
`create=MH_OK enable=MH_OK`; no `COVERAGE:` line was emitted; the watchpoint canary printed
`SELFTEST canary writes=1 traps=1 dr7=0xdddd0055 PASS` on **every** End Turn. These are measured
numbers, not MinHook failures.
### 1.1 Entry counts, active state (turns 21→22 and 22→23 of the AC lineage)
The **baseline column is this lane's own control**, not a quotation: the same shim build, the same
`shim.cfg.l3probe`, the same guest, one End Turn on lane L3's `human-turn15-spyprogram.sav`, run
immediately after the active measurement. It reproduces lane H's and lane L3's published counts
line for line.
| probe | active, turn 1 | active, turn 2 | **AC control** (L3's turn 15) |
|---|---|---|---|
| `ServerSpyManager::vslot13` | 1 | 1 | 1 |
| `ServerSpyManager::vslot14` | 1 | 1 | 1 |
| `ServerTradeManagerImpl::vslot13` | 1 | 1 | 1 |
| `ServerTradeManagerImpl::vslot15` | 1 | 1 | 1 |
| `SpyManager::Slot13RngCallee` | 0 | 0 | 0 |
| **`TradeManager::Slot13RngCalleeA`** | **1** | **1** | **0** |
| **`TradeManager::Slot13RngCalleeB`** | **1** | **0** | **0** |
| `ServerTradeManager::CreateRaidEncounter` | 0 | **1** | 0 |
| `ServerTradeManager::GenerateTradeRaidEncounters` | 1 | 1 | 1 |
| `ServerSpyManager::vslot15` [control] | 1 | 1 | 1 |
| `ServerTradeManagerImpl::vslot14` [control] | 1 | 1 | 1 |
| `EncounterDetect::Run` [control] | NOT INSTALLED | NOT INSTALLED | — |
`Slot13RngCalleeB` firing on turn 1 and not on turn 2 is exactly what the decoded control flow
predicts: `B` is called only when `A` returns true, i.e. only when the raid roll **succeeds**. Two
turns, one success — the roll is doing what a roll does.
### 1.2 The RNG ledger
`side.rng` word deltas. **Control first** (L3's turn 15, no raider, same instrument):
```
ProcessTurn 353 -> 355 delta 2
OnAllCombatDone_Tail 355 -> 355 delta 0
```
**Active** (raider parked on sector 6's node), both turns:
```
ProcessTurn 448 -> 468 delta 20
OnAllCombatDone_Tail 468 -> 469 delta 1
ProcessTurn 469 -> 487 delta 18
OnAllCombatDone_Tail 487 -> 488 delta 1
```
**One word per turn inside the tail**, on a turn where the tail had never drawn a word before. The
draw is `FUN_0047d830(StrategyServer+0x16c + 4)` inside `Slot13RngCalleeA` — one uniform compared
against the raid odds. `Slot13RngCalleeB` and `CreateRaidEncounter` each cost 0 words on the turns
they ran, so the whole of the new consumption is `A`'s single roll.
---
## 2. The gates, decoded from the instruction stream
Read off `sots.exe` (image base `0x00400000`), disassembling to the next function start rather than
to Ghidra's reported size (rule 17).
### 2.1 `Slot13RngCalleeA` / `B` — called from `ServerTradeManagerImpl::vslot13`
Both calls are **direct** `E8 rel32`, not vtable slots:
| callee | called from | at |
|---|---|---|
| `TradeManager::Slot13RngCalleeA` `0x00820ca0` | `ServerTradeManagerImpl::vslot13` `0x0088ef80` | `0x0088f036` |
| `TradeManager::Slot13RngCalleeB` `0x0088b440` | same function | `0x0088f042` |
| `SpyManager::Slot13RngCallee` `0x008408e0` | `ServerSpyManager::vslot13` `0x008877b0` | `0x00887af2` |
`ServerTradeManagerImpl::vslot15` (`0x0082cca0`) and `ServerSpyManager::vslot14` (`0x0088db80`) do
**not** call any of the three. The only data references to the four outer callees are their vtable
slots (`0xa30770`, `0xa30774`, `0xa31ba8`, `0xa31bb0`).
**`vslot13` does not iterate trade routes or trade sectors.** It iterates
`StrategyServer+0x64..+0x68` — the **fleet** vector — and per fleet requires, in order:
```
0088ef95 test ecx,0xfffffffc ; G0 no fleets -> return
0088efb1 je 0x88f047 ; G1 null slot
0088efb9 call 0x6fe320 ; StarFleet::GetLocationAsTradeSector()
0088efc0 je 0x88f047 ; G2 location is not a trade-sector node
0088efc7 call 0x80ed50 ; the raid predicate
0088efd1 je 0x88f047 ; G3
0088efeb..0088f016 ; G4 fleet.Pos == sector.Pos, all three floats
0088f036 call 0x820ca0 ; <-- A
0088f03d je 0x88f047 ; G6 raid roll failed
0088f042 call 0x88b440 ; <-- B
```
**G2** is the one nobody had satisfied. `0x006fe320` reads `StarFleet+0xa0` (`LocID`, resolved to a
pointer) and returns it only if `node+0x14 == 2`. That kind word is written by
`StarMapNode::StarMapNode(int)` `0x00730900`, and enumerating **every** call to it gives exactly
three: `StarSystem` ctor `0x00752ea0` passes **0**, `StarFleet` ctor `0x00706140` passes **1**,
`TradeSector` ctor `0x00858020` passes **2**. So `vslot13` only ever acts on a fleet whose location
is a **trade-sector node**, never a star. Every fleet in every corpus save before this lane was
parked at a star, so G2 rejected all of them — which is why the "23-fleet Zuul save" experiment in
`tail-probes.md` §3.1 could not have worked no matter how many fleets it had.
**G3** is `FUN_0080ed50(fleet)`:
```c
if (!fleet->GetLocationAsTradeSector()) return false;
if (FUN_00813ab0(fleet, 0x80000, 0)) return false; // runtime flag pair +0xb8/+0xbc
ServerPlayer *p = fleet->[0x58]; if (!p) return false;
if (!(sector->[0x90] & (1u << p->[0x28]))) return false; // ** tscr **
if (FUN_0080e9c0(sector, p)) // ** tsct ** bit, or p->[0x5c]==4
if (!FUN_006fe1d0(fleet, 0x800)) return false; // FtFlg & 0x800
return true;
```
`FUN_0080eac0` masks six consecutive words with a low-N-players mask, which is what identifies them
as per-player bitmasks and pins the tags:
```
0080ead7 and [ecx+0x88],edx tssec 0080eae3 and [ecx+0x90],edx tscr
0080eadd and [ecx+0x8c],edx tsct 0080eae9 and [ecx+0x94],edx ptssec …
```
**G4** requires the fleet's `Pos` (`+0x18`) to be **bit-equal** to the sector's — arrived, not in
transit. The `test ah,0x44 / jp` after `fucompp` is the MSVC float-not-equal idiom.
### 2.2 `SpyManager::Slot13RngCallee` — decoded, and much further away than "deployed"
```
0088781d je 0x887e92 ; SpyCraft.deat (+0x10) == 0 -> next spy
00887856 je 0x887c5b ; SpyCraft.sdet (+0x40) == -1 -> DETECTION-ROLL branch, not P
00887867 jl 0x887e92 ; (turn - sdet) < 3 -> next spy
0088787a je 0x887c4f ; system unowned -> sdet = -1
00887891 je 0x887c4f ; system owner == spy's owner -> sdet = -1
00887af2 call 0x8408e0 ; <-- P
```
`P` itself is the **false-flag draw**: `0.25` (`0x009e5ac0`) for an ordinary owner, or `0.75`
(`0x009e5ac4`) plus a uniform pick over the other players when `owner->[0x5c] == 6`; its result is
the name that goes into `EVENT_SPY_DESTROYED`, posted to the *system* owner.
So **deploying a spy is necessary but nowhere near sufficient for `P`**: the spy must be deployed,
then **detected** on an earlier turn, then survive **three more turns** at a system still owned by
someone else. Lane L3's "the next condition is `spyon = 0`" understates the distance by three turns
and a detection roll.
**But the `sdet == -1` arm at `0x00887c5b` is itself an RNG draw** —
`FUN_008e6dd0(StrategyServer+0x16c, spy->sdo)`, gated on `FUN_00743f80(system) & 1` — and it sits
**inline in `vslot13`, not inside `P`**. That is a second, independent way for the tail to draw that
**no entry probe on `P` can see**. It is unreachable today only because `deat == 0` rejects the
docked spy two gates earlier. Rule 20, pointing the other way: instrumenting the entry was necessary
and was not sufficient — a probe on `P` reading 0 does **not** mean the spy half is draw-free.
**This is a hypothesis, not a result** (rule 6): no save in the corpus has a deployed spy, and this
lane did not manage to build one (§5).
---
## 3. `tscr` is the raid mask and `CCC_ComRaid` sets it — measured, before and after
This is the part that turns the decode into a recipe, and it was **not** predicted: this lane's
committed prediction P6 said a player fleet on a sector node would *not* fire the callees, on the
reasoning that `tscr = 252 = 0b11111100` is exactly the six NPC player slots (2–7) and excludes both
real players (0 = `re`, 1 = `The Eternal Empire`). That reading of the *value* was right and the
inference from it was **wrong**, because the mask is not fixed.
| save | `tscr`, all six sectors | player `re` `CnRad` |
|---|---|---|
| `human-turn15-spyprogram.sav` (L3) | **252** = `0b11111100` | absent/false |
| AC turn 19, after `CCC_ComRaid` completes | **253** = `0b11111101` | **true** |
Researching Commerce Raiding sets **bit 0 — the researching player's index — in every trade
sector's `tscr`**, and sets the `ServerPlayer` flag serialised as **`CnRad`**. `CnRad` is to
`CCC_ComRaid` exactly what `CnTrd` (`ServerPlayer+0xff`) is to `CCC_FTLEcon`. The AI, which never
researched it, stays out of the mask: `CnRad` false, bit 1 clear, in the same save.
So `tscr` reads: *the set of players permitted to raid this sector* — the six NPC slots by default
(which is why `TRADE_RAID_ODDS_NPC` and `TRADE_RAID_ODDS_REFUGEE` exist), plus any empire that has
bought its way in with the tech.
Two further tags fall out of the same pair of saves: `tsct` is the set of players **trading through**
the sector (bit 1 on sectors 1, 2 and 5 — the AI's; 0 on sector 6, which is mine), and it is `tsct`
that switches on the extra `FtFlg & 0x800` requirement. Sector 6 has `tsct = 0`, so my raider needed
no flag.
---
## 4. The recipe, end to end
Stock game, stock data, no file edited, starting from lane L3's `human-turn15-spyprogram.sav`.
About 45 minutes of clicking.
1. **Research `CCC_ComRaid`.** `MasterTechList.tech`: `CCC_FTLEcon -> CCC_ComRaid RP:12000
Human:100`. At this game's settings it is **one turn**. In the tech tree it is the node
**directly above FTL Economics in the C3 branch**, and at the zoom the screen opens at it is
drawn *off the top of the viewport*: zoom out two notches with the wheel, then zoom back in one
notch **with the cursor low on the screen** (`wheel 365 560 120 1`), which shifts the camera down
far enough to expose it. Vertical right-drag does **not** pan the tech tree at all — only
horizontal, and only in ~600 px steps, and even then the response is not monotonic in distance.
2. **Toggle Trade View.** Bottom bar circle **(300,714)** opens a six-icon vertical strip; the fifth
icon **(301,626)** is `Toggle Trade View`. Trade sectors then draw as large translucent wireframe
cubes with a padlock/`$` marker at the sector node itself. **Nothing else in the UI shows a trade
sector**, and there is no bar button for trade.
3. **Order a fleet to the sector node.** Select the system, select the fleet row, click **`Move`
(155,464)**, hover the sector marker — the readout reads `Sector 6 / Range 5.0 / ETA 2 Turns` —
then **plain `click`** it. This must be **one `cmd.txt`**; and note the jiggle-click variant
(`jclick`) **silently failed to register the destination** where a plain `click` worked. Confirm
from the fleet panel: it reads `Dest: Sector 6, 2 Turns`. Confirm again from the save — do not
trust the panel: on the first attempt the panel showed nothing and the save showed `LocID 48`
(unmoved).
4. **Two End Turns.** The fleet arrives: `LocID 832` = `TradeID 832` = sector 6, `Pos [0, 0, 8.0]`
bit-identical to the sector's `Pos`.
5. **End Turn with the instrument on.** `Slot13RngCalleeA` fires.
**The refusal is the oracle.** Before the tech, clicking the sector marker with a fleet selected pops
`Alpha Fleet cannot raid trade sector.` (`MOVEWARNING_NO_RAID`; the server-side twin is
`OnCommand: Fleet not able to raid.`). After the tech, the same click is accepted silently. That
single dialog is the cheapest possible test of the whole gate chain.
---
## 5. What this lane could **not** reach: a deployed spy
Reported as an absence, not inferred around.
`ARes2` on `ServerSystem` is the **asteroid-belt** field — its non-zero values in this save (1703,
1948, 2061, 2172, 2531) sit inside `SYSTEM_MIN/MAX_ASTEROID_RESOURCES` 1500–3000, and it is 0
elsewhere. Deploying a spy needs a system that is **not mine**, has **no enemy fleet present**, has
**no spy already**, and **has a belt**. In `human-turn15-spyprogram.sav` only five of 28 systems have
one:
| idx | id | name | `ARes2` | owner |
|---|---|---|---|---|
| 1 | 64 | Ka'Palum | 2061 | unowned |
| 4 | 112 | Regulus | 1703 | unowned |
| 10 | 208 | Kam'Tara | 1948 | unowned, AI fleet parked on it |
| 12 | 240 | Downbelow | 2172 | **mine** |
| 27 | 480 | Hitomi | 2531 | player index **7**, `Independent Colony` |
**No system owned by the AI has an asteroid belt.** The textbook target — an enemy colony with a
belt — does not exist in this game. The only non-own, player-owned belt system is **Hitomi**, held by
the NPC `Independent Colony`; it is 10.1 ly from the tender's berth against a hull range of 9.0, so
it needs a staging hop, and this lane ran out of session before establishing whether it is even
discovered. The `Special` menu at the tender's own system offers only
`Repair / Scuttle / Auto-repair / Flag As Guard` — no `Deploy Spy`, which is consistent with the
gate but does not locate it.
So: **the spy half of "active contents" remains unreached**, and §2.2's prediction that a deployed
spy makes the tail draw through the inline detection roll is a hypothesis for the next lane. The
save to start from is `verify/results/saves/ac-turn22-raider.sav` or L3's turn-15.
**`spies2` is still 0 in all 28 systems** in every save this lane produced, including the turn-22
one. That is unchanged from L3 and is expected: no spy was ever deployed, so the experiment that
distinguishes "`spies2` is not the spy list" from "`spies2` fills only for a deployed spy" was **not
run**. The rule-6 flag on `spies2` / `SysMem` / `mts` stays up. What this lane can add is that the
question is now cheap for whoever reaches a deploy, because `deat` (`SpyCraft+0x10`) is the field
`vslot13` uses as the system handle, and `spies2` living on `ServerSystem` makes the deployed-spy
reading the natural one.
---
## 6. Corrections to earlier findings (rule 11)
**Lane L3, `trade-and-spy-workload.md` §3.5 — "every trade sector has `tsnumflt = 0`, no freighters
in service".** Not true of the save L3 shipped. `human-turn15-spyprogram.sav`, sector `TradeID 816`
(`tsgridID 5`): `tsnumflt 1`, `tsflt 2736` — and fleet 2736 is `Freighters`, `PID 32`, the **AI's**,
with all six member systems AI-owned. The single serialised route record is the AI's too. So across
L3's seven instrumented turns the game **already had a freighter in service on an active route**, and
the trade callees were entered 0 times anyway. **"Freighters in service" was already falsified as the
gate by L3's own data**, before this lane started, and §2.1 now says why: freighters are not in the
predicate at all.
By turn 20 of this lane's lineage the AI had built two more (sector 5 `tsnumflt 2`, sector 2
`tsnumflt 1`) with no effect on any probe.
**Lane V2 — `ServerTradeManagerImpl` vftable slot 13 recorded as "closure 185 functions,
draw-free".** It is not draw-free. It reaches a `NextFloat` at `0x00820ca0` on any turn a permitted
raider is parked on a sector node. The closure was right; "draw-free" was a statement about the
states that occurred (rule 23).
**Lane W3's standing risk — "if either container ever fills, the ledger needs extending".** The risk
was correctly identified and the trigger was wrong: filling the containers changes nothing, and the
ledger needs extending anyway, for a reason that has nothing to do with either container's contents.
**`tsflt` is not a freighter list.** At turn 20, sector 6 reads `tsnumflt 1`, `tsflt 3744` — and 3744
is **my raiding fleet's** id, not a freighter. Whatever the tag is named, it counts fleets present in
the sector.
---
## 7. Controls and coverage (rules 15, 19, 26)
**Guest adoption / instrument-removed control.** `hooks=off watch=off` on `ref-turn2.sav`, one End
Turn, on VM141 with this lane's own shim build:
```
(Autosave EndTurn).sav BB4FD9AC89F41E3BC0DB2AF08B18CE83417521AC4BCEE695FC9FA6CE16E30948
(Autosave).sav 978041ACD168B56ED8EB3F5E42E78D5E70EAE6E6517D75E659A5EB7CA3D60921
```
Both **identical to the published three-run oracle** in
`verify/results/saves/determinism-hashes.txt`. That is agreement with a control already reproduced
in three fresh processes by other lanes on another guest, which is the rule-26 bar; this lane ran it
once here rather than twice, and says so.
**Instrument armed.** All eleven probes `create=MH_OK enable=MH_OK`, no `COVERAGE:` line; watchpoint
canary PASS on every End Turn; container watch read `trade routes count=46 -> 47`,
`spy programs count=1` across the two measured turns.
**Thin coverage, stated plainly.**
- **Two instrumented turns, one raiding fleet, one sector, one ship in the fleet.** The word cost is
1 on both, but 1 fleet × 1 sector is the smallest possible workload and the per-fleet loop means
the cost should scale with *permitted raiders parked on sector nodes*, which this lane did not
vary. Do not fit a constant to two observations (rule 20).
- `Slot13RngCalleeA`'s own body has a **short-circuit that skips the draw entirely**: any ship whose
`design+0x12c > 1` returns true without rolling. My fleet is one `CR Repair and Salvage`, so the
short-circuit was not exercised, and a raid by a different hull could cost **0** words while still
firing `B`. Untested.
- The odds arithmetic (`0.20` vs `0.05` base, `+0.01·nShips`, doubled when a freighter shares the
sector, scaled by a per-ship float) was read statically and **not** validated against measured
success rates: two turns, one success.
- `probes=11` is **not** determinism-neutral (lane H bisected the detour on probe index 8). These
entry counts and word deltas are comparable line-for-line with lane H's and L3's tables, which is
what they are for; they are not a byte-identity claim. `probes=8` still installs indices 0–7, i.e.
all four outer and all three inner callees, and is the configuration to use if a future lane needs
both at once.
- `EncounterDetect::Run [control]` is index 11 and `probes=11` installs 0–10, so it reports
**NOT INSTALLED**, never 0.
---
## 8. Artifacts
| what | where |
|---|---|
| turn-22 save, raider parked on a trade sector, both callees having fired | `verify/results/saves/ac-turn22-raider.sav` |
| turn-20 save, the moment the fleet arrives on the node (pre-measurement) | `verify/results/saves/ac-turn20-raider.sav` |
| probe + ledger trace, two instrumented End Turns | `verify/traces/ac-probe-turn21-turn23.jsonl` |
| shim log and watch hits | `verify/results/shim/ac/ac-probe-run-{shim.log,watch.txt}` |
| predictions, committed before the workload and again after the decode | `sots-engine` `docs/AC-predictions.md` |
| instrument | `sots-engine` `src/shim/shim.cfg.l3probe`, unchanged |
**New content these saves carry** (rule 27 — expect the coverage ratchet to break, and type the
content rather than moving the bar): a `ServerPlayer` with **`CnRad` true**; trade sectors with
**`tscr` = 253** rather than the corpus-universal 252; a `trdmgr` with **three** `rt` route records
rather than one; sectors with `tsnumflt` up to 2 and a `tsflt` entry that is a **warship** fleet id
rather than a freighter; and a `StarFleet` whose **`LocID` is a `TradeSector` id (832)** rather than a
star system id — the first fleet in the corpus located anywhere but a star, which is precisely the
state that makes the tail draw.

View file

@ -0,0 +1,53 @@
{
"_note": "Lane AC (2026-09-08). The gate chain that stands between StrategyServer::OnAllCombatDone_Tail and its trade-raid RNG draw, decoded from the instruction stream of dumps/sots.exe (image base 0x00400000, disassembled to the next function start per rule 17) and then FIRED LIVE on VM141: with a player fleet parked on a trade-sector node, TradeManager::Slot13RngCalleeA (0x00820ca0, already in lane V2's fragment) was entered 1x per turn on two instrumented End Turns and OnAllCombatDone_Tail's RNG word delta went 0 -> 1. ReVa/CT111 was unreachable this session (ReVa CONNECTION_CLOSED), so nothing here was read in Ghidra; every entry was disassembled with capstone against the PE section table and the quoted instructions were re-checked byte for byte at the addresses given. Status is `mapped` for that reason, except where a live entry probe or a save field corroborates the decode. Evidence: findings/control-flow/trade-raid-rng-gate.md, verify/traces/ac-probe-turn21-turn23.jsonl (active) and ac-probe-baseline-turn15.jsonl (control).",
"entries": [
{
"name": "StarFleet_GetLocationAsTradeSector",
"addr": "0x006fe320",
"convention": "__thiscall",
"prototype": "Game::TradeSector* (Game::StarFleet* this) /* THE GATE NOBODY HAD SATISFIED. Reads StarFleet+0xa0 (`LocID`, resolved to a StarMapNode*) and returns it ONLY if node+0x14 == 2, else NULL. Whole body, validated at this address: `mov eax,[ecx+0xa0]; test eax,eax; je +8; cmp dword ptr [eax+0x14],2; je +2; xor eax,eax; ret`. Called twice from ServerTradeManagerImpl::vslot13 (0x0088ef80+0x39 and +0x98) and once from the raid predicate 0x0080ed50. Because every fleet in every corpus save before this lane was parked at a STAR (kind 0), this returned NULL for all of them, which is why the trade-raid callees had never been entered by any lane. CORROBORATED BY SAVE: after this lane moved a fleet onto a sector node, its serialized `LocID` reads 832, which is the `TradeID` of trade sector 6 in the same file, and its `Pos` is bit-equal to that sector's. */",
"status": "mapped",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
},
{
"name": "StarMapNode_ctor_kind",
"addr": "0x00730900",
"convention": "__thiscall",
"prototype": "void (Mars::StarMapNode* this, int kind) /* StarMapNode::StarMapNode(int). Stores the ctor argument to this+0x14, the word GetLocationAsTradeSector tests. Enumerating EVERY call site is what pins the kind constants, and there are exactly three: Game::StarSystem's ctor 0x00752ea0 passes 0, Game::StarFleet's 0x00706140 passes 1, and Game::TradeSector's 0x00858020 passes 2. So node+0x14 == 2 means TradeSector and nothing else. Prologue validated at this address (push ebp; mov ebp,esp; push -1; push 0x982dc8; fs:[0] SEH frame; security cookie from 0xaf8b78). NOT READ IN GHIDRA: the rest of the body. */",
"status": "mapped",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
},
{
"name": "TradeSector_FleetMayRaid",
"addr": "0x0080ed50",
"convention": "__cdecl",
"prototype": "bool (Game::StarFleet* fleet) /* The raid predicate -- gate G3 of ServerTradeManagerImpl::vslot13, called at 0x0088efc7. Returns false unless: the fleet's location is a trade-sector node; FUN_00813ab0(fleet, 0x80000, 0) is false (a runtime-only 64-bit flag pair at StarFleet+0xb8/+0xbc, NOT serialized, so it has no save tag); the fleet has an owner (StarFleet+0x58 -> Game::ServerPlayer*); and the owner's player index bit is set in the sector's `tscr` mask at TradeSector+0x90. If the owner's bit is ALSO set in `tsct` (TradeSector+0x8c), or the owner's ServerPlayer+0x5c == 4, the fleet must additionally carry StarFleet.FtFlg (+0x10c) & 0x800. Mask test validated at 0x0080ed8f: `mov ecx,[edx+0x28]; push edi; mov edi,1; shl edi,cl; test [eax+0x90],edi`. THE UI SURFACES THIS PREDICATE VERBATIM: ordering a fleet onto a sector node without it pops `<fleet> cannot raid trade sector.` (MOVEWARNING_NO_RAID); the server-side twin string is `OnCommand: Fleet not able to raid.` */",
"status": "mapped",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
},
{
"name": "TradeSector_PlayerTradesHere",
"addr": "0x0080e9c0",
"convention": "__cdecl",
"prototype": "bool (Game::TradeSector* sector, Game::ServerPlayer* player) /* Tests the player's index bit in the sector's `tsct` mask (TradeSector+0x8c) at 0x0080e9de..0x0080e9e8, short-circuiting true when player->+0x5c == 4. Used by the raid predicate to decide whether the raider additionally needs FtFlg & 0x800, and by the juicy-target scan 0x0081a150. CORROBORATED BY SAVE: `tsct` is 2 on the three sectors the AI (player index 1) trades through and 0 on sector 6, which is the human player's -- and the human raider on sector 6 needed no flag. */",
"status": "mapped",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
},
{
"name": "TradeSector_TrimPlayerMasks",
"addr": "0x0080eac0",
"convention": "__cdecl",
"prototype": "void (Game::TradeSector* sector, uint32 keepMask) /* ANDs six consecutive words with a low-N-players mask: +0x88 `tssec`, +0x8c `tsct`, +0x90 `tscr`, +0x94 `ptssec`, +0x98 `ptsct`, +0x9c `ptscr` (stores at 0x0080ead7, 0x0080eadd, 0x0080eae3, 0x0080eae9, 0x0080eaef, 0x0080eaf5). This is what identifies all six of those save tags as PER-PLAYER BITMASKS rather than counts or colours, which had never been established -- `tscr` reads 252 in every save in the corpus and 252 is 0b11111100, i.e. the six NPC player slots. CORROBORATED BY SAVE: researching CCC_ComRaid takes `tscr` from 252 to 253 on all six sectors of the same game, i.e. it sets bit 0, the researching player's index, and sets that player's serialized `CnRad`. NOT LOCATED: the writer that sets a bit -- no `or`/`bts` against +0x8c/+0x90 was found in .text, so the masks are rebuilt wholesale somewhere this lane did not find. */",
"status": "mapped",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
},
{
"name": "SpyManager_DetectionRoll_Branch",
"addr": "0x00887c5b",
"convention": "__none",
"prototype": "/* NOT A FUNCTION -- the `sdet == -1` arm inside Game::ServerSpyManager::vslot13 (0x008877b0), branched to from 0x00887856. It calls FUN_0081f570(spy, system, owner), tests FUN_00743f80(system) & 1, and on that bit ROLLS FUN_008e6dd0(StrategyServer+0x16c, the RNG, with spy->sdo at SpyCraft+0x3c), then stamps sdet = turn and posts EVENT_SPY_DETECTED. Recorded here because it is a SECOND, INDEPENDENT WAY FOR THE TAIL TO DRAW that no entry probe on SpyManager::Slot13RngCallee can see: the draw is inline in the outer callee. It is unreachable in every save in the corpus because the gate before it, `SpyCraft.deat (+0x10) != 0` at 0x0088781d, rejects a built-but-undeployed spy. HYPOTHESIS, NOT MEASURED (rule 6): no save has a deployed spy and this lane did not build one. */",
"status": "hypothesis",
"source": "findings/control-flow/trade-raid-rng-gate.md (lane AC 2026-09-08)"
}
]
}

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,316 @@
21:05:37.236 [tid 6764] ==== sots-engine shim (binkw32 proxy) build ac-7e726b9-20260909T0017Z ====
21:05:37.236 [tid 6764] exe: C:\SOTS\Sword of the Stars.exe
21:05:37.236 [tid 6764] exe base=0x00210000 (link-time image base 0x00400000, ASLR delta -2031616) pid=7220 shim=73430000
21:05:37.236 [tid 6764] addresses: Source: sots-re ghidra/addresses.json @ 7d51767, generated 2026-09-08 by tools/gen_addresses.py
21:05:37.252 [tid 6764] config: hook.Shim::SelfTest::Fill=off
21:05:37.252 [tid 6764] config: hook.Mars::GlobalConsts::LoadFile=off
21:05:37.252 [tid 6764] config: hook.Game::WeaponDictionary::Init=off
21:05:37.252 [tid 6764] config: hook.Game::SectionDictionary::SectionDictionary=off
21:05:37.252 [tid 6764] config: hook.Game::ServerPlayer::ComputeBudget=off
21:05:37.252 [tid 6764] config: hook.Game::TechTree::ProcessResearch=off
21:05:37.252 [tid 6764] config: hook.Game::ServerPlayer::OnTechResearched=off
21:05:37.252 [tid 6764] config: hook.Game::ServerSystem::ProcessTurn=off
21:05:37.252 [tid 6764] config: hook.Game::ServerPlayer::ProcessTurn=off
21:05:37.252 [tid 6764] config: hook.Game::ServerSystem::GroupOutput=off
21:05:37.252 [tid 6764] config: hook.Game::ServerSystem::ComputeTotalOutput=off
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::MoveFleet=off
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::ProcessFleetMovement=off
21:05:37.252 [tid 6764] config: hook.Game::StrategyHost::Autosave=trace
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::ProcessTurn=trace
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::OnAllCombatDone_Tail=trace
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::ApplyEncounterResult=trace
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::NodeLineDecay=trace
21:05:37.252 [tid 6764] config: hook.Game::StrategyServer::ProcessNodeSpaceTravel=trace
21:05:37.252 [tid 6764] config: hook.Game::EncounterDetect::AssignContacts=trace
21:05:37.252 [tid 6764] config: hook.Game::EncounterDetect::ProcessTeamRecord=trace
21:05:37.252 [tid 6764] config: fpu.sample_turn=off
21:05:37.252 [tid 6764] config: fpu.sample_ticks=off
21:05:37.252 [tid 6764] config: trace.inline_max=64
21:05:37.252 [tid 6764] config: trace.path=C:\SOTS\shim.trace.jsonl
21:05:37.252 [tid 6764] config: trace.flush=always
21:05:37.252 [tid 6764] config: probes=11 -> 11 lane-H entry probes
21:05:37.252 [tid 6764] config: watch=on
21:05:37.252 [tid 6764] config: watch.mode=cont
21:05:37.252 [tid 6764] config: watch.out=C:\SOTS\shim.watch.txt
21:05:37.377 [tid 6764] trace: C:\SOTS\shim.trace.jsonl (default mode trace, inline_max 64, flush always)
21:05:37.377 [tid 6764] hook: Mars_Application_Initialize rva=0x004a0e50 -> va=006b0e50
21:05:37.377 [tid 6764] hook: MH_Initialize -> MH_OK
21:05:37.377 [tid 6764] hook: MH_CreateHook -> MH_OK (trampoline=019a0fe0)
21:05:37.392 [tid 6764] hook: MH_EnableHook -> MH_OK
21:05:37.392 [tid 6764] cfg: GlobalConsts hook ready (scale constant 0.017453292519943295)
21:05:37.392 [tid 6764] hook: Mars::GlobalConsts::LoadFile rva=0x004b73c0 mode=off (not installed)
21:05:37.392 [tid 6764] dict: dictionaries hook ready (crt new=7335232b delete=73350174)
21:05:37.392 [tid 6764] hook: Game::WeaponDictionary::Init rva=0x0019a4c0 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::SectionDictionary::SectionDictionary rva=0x00176f40 mode=off (not installed)
21:05:37.392 [tid 6764] research: ProcessResearch hook ready (Cost=0038da00, node=0x34, rng=0x9cc, fpu_cw=0x027f)
21:05:37.392 [tid 6764] hook: Game::TechTree::ProcessResearch rva=0x001876c0 mode=off (not installed)
21:05:37.392 [tid 6764] techfx: OnTechResearched hook ready (regions=15, gate=0/0, fpu_cw=0x027f)
21:05:37.392 [tid 6764] hook: Game::ServerPlayer::OnTechResearched rva=0x00491790 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::ServerPlayer::ComputeBudget rva=0x00463030 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::ServerSystem::ProcessTurn rva=0x003598e0 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::ServerSystem::GroupOutput rva=0x0034b7a0 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::ServerSystem::ComputeTotalOutput rva=0x00350480 mode=off (not installed)
21:05:37.392 [tid 6764] player_turn: ServerPlayer::ProcessTurn hook armed (ratio helper at 0038e950)
21:05:37.392 [tid 6764] hook: Game::ServerPlayer::ProcessTurn rva=0x00491340 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::StrategyServer::MoveFleet rva=0x003d9ee0 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::StrategyServer::ProcessFleetMovement rva=0x003da9a0 mode=off (not installed)
21:05:37.392 [tid 6764] hook: Game::StrategyHost::Autosave rva=0x00495210 -> va=006a5210 MH_CreateHook -> MH_OK (trampoline=019a0fc0)
21:05:37.408 [tid 6764] hook: Game::StrategyHost::Autosave MH_EnableHook -> MH_OK mode=trace
21:05:37.408 [tid 6764] hook: Game::StrategyServer::ProcessTurn rva=0x003dc6c0 -> va=005ec6c0 MH_CreateHook -> MH_OK (trampoline=019a0fa0)
21:05:37.423 [tid 6764] hook: Game::StrategyServer::ProcessTurn MH_EnableHook -> MH_OK mode=trace
21:05:37.423 [tid 6764] hook: Game::StrategyServer::OnAllCombatDone_Tail rva=0x003d92a0 -> va=005e92a0 MH_CreateHook -> MH_OK (trampoline=019a0f80)
21:05:37.439 [tid 6764] hook: Game::StrategyServer::OnAllCombatDone_Tail MH_EnableHook -> MH_OK mode=trace
21:05:37.439 [tid 6764] hook: Game::StrategyServer::ApplyEncounterResult rva=0x003d8920 -> va=005e8920 MH_CreateHook -> MH_OK (trampoline=019a0f60)
21:05:37.470 [tid 6764] hook: Game::StrategyServer::ApplyEncounterResult MH_EnableHook -> MH_OK mode=trace
21:05:37.470 [tid 6764] hook: Game::StrategyServer::NodeLineDecay rva=0x003ae010 -> va=005be010 MH_CreateHook -> MH_OK (trampoline=019a0f40)
21:05:37.486 [tid 6764] hook: Game::StrategyServer::NodeLineDecay MH_EnableHook -> MH_OK mode=trace
21:05:37.486 [tid 6764] hook: Game::StrategyServer::ProcessNodeSpaceTravel rva=0x003a0e20 -> va=005b0e20 MH_CreateHook -> MH_OK (trampoline=019a0f20)
21:05:37.502 [tid 6764] hook: Game::StrategyServer::ProcessNodeSpaceTravel MH_EnableHook -> MH_OK mode=trace
21:05:37.502 [tid 6764] hook: Game::EncounterDetect::AssignContacts rva=0x003aa240 -> va=005ba240 MH_CreateHook -> MH_OK (trampoline=019a0f00)
21:05:37.517 [tid 6764] hook: Game::EncounterDetect::AssignContacts MH_EnableHook -> MH_OK mode=trace
21:05:37.517 [tid 6764] hook: Game::EncounterDetect::ProcessTeamRecord rva=0x003ca640 -> va=005da640 MH_CreateHook -> MH_OK (trampoline=019a0ee0)
21:05:37.548 [tid 6764] hook: Game::EncounterDetect::ProcessTeamRecord MH_EnableHook -> MH_OK mode=trace
21:05:37.548 [tid 6764] hook: Game::StrategyServer::BeginProcessTurn rva=0x003d98e0 -> va=005e98e0 MH_CreateHook -> MH_OK (trampoline=019a0ec0)
21:05:37.564 [tid 6764] hook: Game::StrategyServer::BeginProcessTurn MH_EnableHook -> MH_OK mode=trace
21:05:37.564 [tid 6764] hook: Game::SVSOSwarmQueen::OnTurnBegin rva=0x00129930 -> va=00339930 MH_CreateHook -> MH_OK (trampoline=019a0ea0)
21:05:37.580 [tid 6764] hook: Game::SVSOSwarmQueen::OnTurnBegin MH_EnableHook -> MH_OK mode=trace
21:05:37.580 [tid 6764] hook: Game::SVSOSwarmQueen::RegisterHives rva=0x00127630 -> va=00337630 MH_CreateHook -> MH_OK (trampoline=019a0e80)
21:05:37.595 [tid 6764] hook: Game::SVSOSwarmQueen::RegisterHives MH_EnableHook -> MH_OK mode=trace
21:05:37.595 [tid 6764] hook: Game::SVSOSwarmQueen::TickHives rva=0x00127770 -> va=00337770 MH_CreateHook -> MH_OK (trampoline=019a0e60)
21:05:37.627 [tid 6764] hook: Game::SVSOSwarmQueen::TickHives MH_EnableHook -> MH_OK mode=trace
21:05:37.627 [tid 6764] hook: Game::SVSOSlaversRefuel::UpdateDifficultyTier rva=0x00115820 -> va=00325820 MH_CreateHook -> MH_OK (trampoline=019a0e40)
21:05:37.642 [tid 6764] hook: Game::SVSOSlaversRefuel::UpdateDifficultyTier MH_EnableHook -> MH_OK mode=trace
21:05:37.642 [tid 6764] hook: Mars::RNG::Seed rva=0x0009fdf0 -> va=002afdf0 MH_CreateHook -> MH_OK (trampoline=019a0e20)
21:05:37.658 [tid 6764] hook: Mars::RNG::Seed MH_EnableHook -> MH_OK mode=trace
21:05:37.658 [tid 6764] hook: Game::StrategyApp::RunAI rva=0x004706f0 -> va=006806f0 MH_CreateHook -> MH_OK (trampoline=019a0e00)
21:05:37.673 [tid 6764] hook: Game::StrategyApp::RunAI MH_EnableHook -> MH_OK mode=trace
21:05:37.689 [tid 6764] drawsite: Mars::RNG::NextFloat rva=0x0007d830 -> va=0028d830 create=MH_OK enable=MH_OK
21:05:37.720 [tid 6764] drawsite: Mars::RNG::NextInt rva=0x000271c0 -> va=002371c0 create=MH_OK enable=MH_OK
21:05:37.736 [tid 6764] drawsite: Mars::RNG::Chance rva=0x004e6dd0 -> va=006f6dd0 create=MH_OK enable=MH_OK
21:05:37.752 [tid 6764] drawsite: Mars::RNG::NextUInt rva=0x000f7670 -> va=00307670 create=MH_OK enable=MH_OK
21:05:37.767 [tid 6764] drawsite: Mars::RNG::FloatRange rva=0x0007d8a0 -> va=0028d8a0 create=MH_OK enable=MH_OK
21:05:37.783 [tid 6764] drawsite: Mars::RNG::IntRangeBell rva=0x004e6d80 -> va=006f6d80 create=MH_OK enable=MH_OK
21:05:37.798 [tid 6764] drawsite: Mars::RNG::GaussianRange rva=0x004e6e30 -> va=006f6e30 create=MH_OK enable=MH_OK
21:05:37.798 [tid 6764] probe: installing 11 of 12 (probes= in shim.cfg)
21:05:37.814 [tid 6764] probe: Game::ServerSpyManager::vslot13 rva=0x004877b0 -> va=006977b0 create=MH_OK enable=MH_OK
21:05:37.830 [tid 6764] probe: Game::ServerSpyManager::vslot14 rva=0x0048db80 -> va=0069db80 create=MH_OK enable=MH_OK
21:05:37.845 [tid 6764] probe: Game::ServerTradeManagerImpl::vslot13 rva=0x0048ef80 -> va=0069ef80 create=MH_OK enable=MH_OK
21:05:37.861 [tid 6764] probe: Game::ServerTradeManagerImpl::vslot15 rva=0x0042cca0 -> va=0063cca0 create=MH_OK enable=MH_OK
21:05:37.877 [tid 6764] probe: Game::SpyManager::Slot13RngCallee rva=0x004408e0 -> va=006508e0 create=MH_OK enable=MH_OK
21:05:37.892 [tid 6764] probe: Game::TradeManager::Slot13RngCalleeA rva=0x00420ca0 -> va=00630ca0 create=MH_OK enable=MH_OK
21:05:37.923 [tid 6764] probe: Game::TradeManager::Slot13RngCalleeB rva=0x0048b440 -> va=0069b440 create=MH_OK enable=MH_OK
21:05:37.939 [tid 6764] probe: Game::ServerTradeManager::CreateRaidEncounter rva=0x004938a0 -> va=006a38a0 create=MH_OK enable=MH_OK
21:05:37.955 [tid 6764] probe: Game::ServerTradeManager::GenerateTradeRaidEncounters rva=0x00493290 -> va=006a3290 create=MH_OK enable=MH_OK
21:05:37.970 [tid 6764] probe: Game::ServerSpyManager::vslot15 [control] rva=0x00487f30 -> va=00697f30 create=MH_OK enable=MH_OK
21:05:37.986 [tid 6764] probe: Game::ServerTradeManagerImpl::vslot14 [control] rva=0x004590d0 -> va=006690d0 create=MH_OK enable=MH_OK
21:05:37.986 [tid 6764] watch: VEH=0137ab98 text=[0x00211000,0x007eca00) out=C:\SOTS\shim.watch.txt
21:05:38.002 [tid 6764] watch: arm hook StrategyServer::ApplyAllTurnCommands rva=0x0038f6a0 va=0059f6a0 create=MH_OK enable=MH_OK
21:05:38.002 [tid 6764] aiorders: disabled (aiorders=off)
21:05:38.002 [tid 6764] fpu: module init, entry cw=0x027f 53bit-double/nearest; force=off value=0x0000 sample_ticks=off
21:05:38.002 [tid 6764] fpu: sample_turn=off (off releases StrategyServer::ProcessTurn for another hook)
21:05:38.002 [tid 6764] fpu: StrategyClient::EndTurn rva=0x00383be0 -> va=00593be0 MH_CreateHook -> MH_OK (trampoline=019a0b80)
21:05:38.017 [tid 6764] fpu: StrategyClient::EndTurn MH_EnableHook -> MH_OK
21:05:38.017 [tid 6764] fpu: StrategyServer::BeginProcessTurn rva=0x003d98e0 -> va=005e98e0 MH_CreateHook -> MH_ERROR_ALREADY_CREATED (trampoline=00000000)
21:05:38.017 [tid 6764] fpu: StrategyServer::ProcessTurn rva=0x003dc6c0 not installed (sampler off)
21:05:38.017 [tid 6764] fpu: DemoApp::OnTick rva=0x0049a640 not installed (sampler off)
21:05:38.017 [tid 6764] selftest: Shim::SelfTest::Fill mode=off checksum=075ef0c3 records=0
21:05:38.033 [tid 6764] Application::Initialize called (this=03588348)
21:11:30.470 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=0e570b48): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:11:33.626 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e87d50): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:11:33.642 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e8bed8): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:11:33.705 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e8cd68): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:11:34.611 [tid 6764] watch: trade routes -- manager=0x0e56e210 (S+4+0x154) vector@mgr+0x3c first=0x0436a668 last=0x0436a720 end=0x0436a764 count=46
21:11:34.611 [tid 6764] watch: spy programs -- manager=0x0e5b10d8 (S+4+0x158) vector@mgr+0x10 first=0x0e611c50 last=0x0e611c54 end=0x0e611c54 count=1
21:11:34.611 [tid 6764] watch: SELFTEST canary writes=1 traps=1 dr7=0xdddd0055 PASS
21:11:34.611 [tid 6764] watch: slot 0 -> trade routes _Myfirst (mgr+0x3c, count 46 at arm) = 0x0e56e24c
21:11:34.611 [tid 6764] watch: slot 1 -> trade routes _Mylast (mgr+0x40, count 46 at arm) = 0x0e56e250
21:11:34.611 [tid 6764] watch: slot 2 -> spy programs _Myfirst (mgr+0x10, count 1 at arm) = 0x0e5b10e8
21:11:34.611 [tid 6764] watch: slot 3 -> spy programs _Mylast (mgr+0x14, count 1 at arm) = 0x0e5b10ec
21:11:34.611 [tid 6764] watch: ARMED on tid 6764 dr7=0xdddd0055, S=0e568a18 (ApplyAllTurnCommands this)
21:11:36.611 [tid 992] watchhit seq=0 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690588(0x0436a71c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=1 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690584(0x0436a718) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=2 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690580(0x0436a714) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=3 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690576(0x0436a710) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=4 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690572(0x0436a70c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=5 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690568(0x0436a708) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=6 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690564(0x0436a704) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=7 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690560(0x0436a700) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=8 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690556(0x0436a6fc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=9 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690552(0x0436a6f8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=10 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690548(0x0436a6f4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=11 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690544(0x0436a6f0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=12 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690540(0x0436a6ec) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=13 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690536(0x0436a6e8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=14 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690532(0x0436a6e4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=15 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690528(0x0436a6e0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=16 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690524(0x0436a6dc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=17 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690520(0x0436a6d8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=18 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690516(0x0436a6d4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=19 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690512(0x0436a6d0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=20 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690508(0x0436a6cc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=21 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690504(0x0436a6c8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=22 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690500(0x0436a6c4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=23 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690496(0x0436a6c0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=24 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690492(0x0436a6bc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=25 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690488(0x0436a6b8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=26 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690484(0x0436a6b4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=27 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690480(0x0436a6b0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=28 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690476(0x0436a6ac) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=29 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690472(0x0436a6a8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=30 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690468(0x0436a6a4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=31 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690464(0x0436a6a0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=32 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690460(0x0436a69c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=33 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690456(0x0436a698) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=34 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690452(0x0436a694) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=35 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690448(0x0436a690) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=36 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690444(0x0436a68c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=37 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690440(0x0436a688) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=38 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690436(0x0436a684) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=39 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690432(0x0436a680) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=40 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690428(0x0436a67c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=41 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690424(0x0436a678) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=42 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690420(0x0436a674) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:11:36.611 [tid 992] watchhit seq=43 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690424(0x0436a678) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=44 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690428(0x0436a67c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=45 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690432(0x0436a680) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=46 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690436(0x0436a684) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=47 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690440(0x0436a688) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=48 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690444(0x0436a68c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=49 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690448(0x0436a690) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=50 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690452(0x0436a694) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=51 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690456(0x0436a698) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=52 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690460(0x0436a69c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=53 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690464(0x0436a6a0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=54 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690468(0x0436a6a4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=55 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690472(0x0436a6a8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=56 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690476(0x0436a6ac) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=57 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690480(0x0436a6b0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=58 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690484(0x0436a6b4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=59 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690488(0x0436a6b8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=60 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690492(0x0436a6bc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=61 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690496(0x0436a6c0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=62 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690500(0x0436a6c4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=63 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690504(0x0436a6c8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=64 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690508(0x0436a6cc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=65 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690512(0x0436a6d0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=66 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690516(0x0436a6d4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=67 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690520(0x0436a6d8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=68 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690524(0x0436a6dc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=69 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690528(0x0436a6e0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=70 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690532(0x0436a6e4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=71 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690536(0x0436a6e8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=72 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690540(0x0436a6ec) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=73 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690544(0x0436a6f0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=74 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690548(0x0436a6f4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=75 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690552(0x0436a6f8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=76 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690556(0x0436a6fc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=77 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690560(0x0436a700) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=78 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690564(0x0436a704) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=79 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690568(0x0436a708) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=80 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690572(0x0436a70c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=81 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690576(0x0436a710) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=82 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690580(0x0436a714) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=83 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690584(0x0436a718) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=84 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690588(0x0436a71c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=85 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690592(0x0436a720) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:11:36.611 [tid 992] watchhit seq=86 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690596(0x0436a724) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
21:12:56.501 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=0e570b48): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:12:59.626 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e87d50): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:12:59.658 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e8bed8): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:12:59.689 [tid 6764] fpu: sample at StrategyClient::EndTurn (this=34e8cd68): cw=0x127f 53bit-double/nearest [no fpu.force configured]
21:13:00.611 [tid 6764] watch: trade routes -- manager=0x0e56e210 (S+4+0x154) vector@mgr+0x3c first=0x0436a668 last=0x0436a724 end=0x0436a764 count=47
21:13:00.611 [tid 6764] watch: spy programs -- manager=0x0e5b10d8 (S+4+0x158) vector@mgr+0x10 first=0x0e611c50 last=0x0e611c54 end=0x0e611c54 count=1
21:13:00.611 [tid 6764] watch: SELFTEST canary writes=1 traps=1 dr7=0xdddd0055 PASS
21:13:00.611 [tid 6764] watch: slot 0 -> trade routes _Myfirst (mgr+0x3c, count 47 at arm) = 0x0e56e24c
21:13:00.611 [tid 6764] watch: slot 1 -> trade routes _Mylast (mgr+0x40, count 47 at arm) = 0x0e56e250
21:13:00.611 [tid 6764] watch: slot 2 -> spy programs _Myfirst (mgr+0x10, count 1 at arm) = 0x0e5b10e8
21:13:00.611 [tid 6764] watch: slot 3 -> spy programs _Mylast (mgr+0x14, count 1 at arm) = 0x0e5b10ec
21:13:00.611 [tid 6764] watch: ARMED on tid 6764 dr7=0xdddd0055, S=0e568a18 (ApplyAllTurnCommands this)
21:13:01.251 [tid 992] watchhit seq=87 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690592(0x0436a720) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=88 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690588(0x0436a71c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=89 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690584(0x0436a718) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=90 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690580(0x0436a714) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=91 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690576(0x0436a710) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=92 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690572(0x0436a70c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=93 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690568(0x0436a708) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=94 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690564(0x0436a704) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=95 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690560(0x0436a700) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=96 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690556(0x0436a6fc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=97 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690552(0x0436a6f8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=98 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690548(0x0436a6f4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=99 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690544(0x0436a6f0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=100 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690540(0x0436a6ec) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=101 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690536(0x0436a6e8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=102 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690532(0x0436a6e4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=103 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690528(0x0436a6e0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=104 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690524(0x0436a6dc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=105 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690520(0x0436a6d8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=106 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690516(0x0436a6d4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=107 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690512(0x0436a6d0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=108 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690508(0x0436a6cc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=109 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690504(0x0436a6c8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=110 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690500(0x0436a6c4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=111 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690496(0x0436a6c0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=112 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690492(0x0436a6bc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=113 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690488(0x0436a6b8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=114 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690484(0x0436a6b4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=115 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690480(0x0436a6b0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=116 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690476(0x0436a6ac) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=117 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690472(0x0436a6a8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=118 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690468(0x0436a6a4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=119 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690464(0x0436a6a0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=120 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690460(0x0436a69c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=121 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690456(0x0436a698) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=122 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690452(0x0436a694) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=123 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690448(0x0436a690) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=124 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690444(0x0436a68c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=125 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690440(0x0436a688) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=126 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690436(0x0436a684) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=127 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690432(0x0436a680) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=128 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690428(0x0436a67c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=129 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690424(0x0436a678) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=130 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690420(0x0436a674) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
21:13:01.251 [tid 992] watchhit seq=131 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690424(0x0436a678) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=132 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690428(0x0436a67c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=133 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690432(0x0436a680) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=134 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690436(0x0436a684) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=135 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690440(0x0436a688) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=136 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690444(0x0436a68c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=137 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690448(0x0436a690) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=138 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690452(0x0436a694) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=139 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690456(0x0436a698) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=140 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690460(0x0436a69c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=141 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690464(0x0436a6a0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=142 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690468(0x0436a6a4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=143 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690472(0x0436a6a8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=144 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690476(0x0436a6ac) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=145 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690480(0x0436a6b0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=146 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690484(0x0436a6b4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=147 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690488(0x0436a6b8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=148 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690492(0x0436a6bc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=149 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690496(0x0436a6c0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=150 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690500(0x0436a6c4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=151 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690504(0x0436a6c8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=152 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690508(0x0436a6cc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=153 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690512(0x0436a6d0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=154 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690516(0x0436a6d4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=155 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690520(0x0436a6d8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=156 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690524(0x0436a6dc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=157 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690528(0x0436a6e0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=158 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690532(0x0436a6e4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=159 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690536(0x0436a6e8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=160 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690540(0x0436a6ec) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=161 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690544(0x0436a6f0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=162 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690548(0x0436a6f4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=163 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690552(0x0436a6f8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=164 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690556(0x0436a6fc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=165 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690560(0x0436a700) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=166 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690564(0x0436a704) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=167 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690568(0x0436a708) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=168 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690572(0x0436a70c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=169 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690576(0x0436a710) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=170 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690580(0x0436a714) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=171 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690584(0x0436a718) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=172 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690588(0x0436a71c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=173 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690592(0x0436a720) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
21:13:01.251 [tid 992] watchhit seq=174 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690596(0x0436a724) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000

View file

@ -0,0 +1,175 @@
watchhit seq=0 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690588(0x0436a71c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=1 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690584(0x0436a718) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=2 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690580(0x0436a714) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=3 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690576(0x0436a710) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=4 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690572(0x0436a70c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=5 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690568(0x0436a708) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=6 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690564(0x0436a704) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=7 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690560(0x0436a700) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=8 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690556(0x0436a6fc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=9 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690552(0x0436a6f8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=10 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690548(0x0436a6f4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=11 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690544(0x0436a6f0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=12 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690540(0x0436a6ec) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=13 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690536(0x0436a6e8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=14 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690532(0x0436a6e4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=15 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690528(0x0436a6e0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=16 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690524(0x0436a6dc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=17 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690520(0x0436a6d8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=18 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690516(0x0436a6d4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=19 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690512(0x0436a6d0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=20 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690508(0x0436a6cc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=21 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690504(0x0436a6c8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=22 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690500(0x0436a6c4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=23 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690496(0x0436a6c0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=24 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690492(0x0436a6bc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=25 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690488(0x0436a6b8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=26 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690484(0x0436a6b4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=27 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690480(0x0436a6b0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=28 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690476(0x0436a6ac) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=29 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690472(0x0436a6a8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=30 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690468(0x0436a6a4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=31 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690464(0x0436a6a0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=32 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690460(0x0436a69c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=33 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690456(0x0436a698) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=34 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690452(0x0436a694) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=35 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690448(0x0436a690) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=36 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690444(0x0436a68c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=37 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690440(0x0436a688) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=38 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690436(0x0436a684) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=39 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690432(0x0436a680) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=40 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690428(0x0436a67c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=41 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690424(0x0436a678) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=42 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690420(0x0436a674) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=43 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690424(0x0436a678) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=44 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690428(0x0436a67c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=45 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690432(0x0436a680) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=46 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690436(0x0436a684) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=47 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690440(0x0436a688) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=48 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690444(0x0436a68c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=49 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690448(0x0436a690) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=50 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690452(0x0436a694) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=51 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690456(0x0436a698) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=52 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690460(0x0436a69c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=53 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690464(0x0436a6a0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=54 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690468(0x0436a6a4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=55 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690472(0x0436a6a8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=56 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690476(0x0436a6ac) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=57 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690480(0x0436a6b0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=58 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690484(0x0436a6b4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=59 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690488(0x0436a6b8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=60 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690492(0x0436a6bc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=61 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690496(0x0436a6c0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=62 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690500(0x0436a6c4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=63 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690504(0x0436a6c8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=64 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690508(0x0436a6cc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=65 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690512(0x0436a6d0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=66 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690516(0x0436a6d4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=67 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690520(0x0436a6d8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=68 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690524(0x0436a6dc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=69 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690528(0x0436a6e0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=70 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690532(0x0436a6e4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=71 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690536(0x0436a6e8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=72 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690540(0x0436a6ec) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=73 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690544(0x0436a6f0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=74 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690548(0x0436a6f4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=75 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690552(0x0436a6f8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=76 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690556(0x0436a6fc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=77 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690560(0x0436a700) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=78 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690564(0x0436a704) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=79 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690568(0x0436a708) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=80 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690572(0x0436a70c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=81 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690576(0x0436a710) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=82 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690580(0x0436a714) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=83 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690584(0x0436a718) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=84 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690588(0x0436a71c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=85 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690592(0x0436a720) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=86 mark=1 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690596(0x0436a724) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00000000
watchhit seq=87 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690592(0x0436a720) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=88 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690588(0x0436a71c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=89 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690584(0x0436a718) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=90 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690580(0x0436a714) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=91 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690576(0x0436a710) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=92 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690572(0x0436a70c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=93 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690568(0x0436a708) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=94 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690564(0x0436a704) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=95 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690560(0x0436a700) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=96 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690556(0x0436a6fc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=97 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690552(0x0436a6f8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=98 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690548(0x0436a6f4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=99 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690544(0x0436a6f0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=100 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690540(0x0436a6ec) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=101 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690536(0x0436a6e8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=102 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690532(0x0436a6e4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=103 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690528(0x0436a6e0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=104 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690524(0x0436a6dc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=105 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690520(0x0436a6d8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=106 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690516(0x0436a6d4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=107 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690512(0x0436a6d0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=108 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690508(0x0436a6cc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=109 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690504(0x0436a6c8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=110 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690500(0x0436a6c4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=111 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690496(0x0436a6c0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=112 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690492(0x0436a6bc) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=113 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690488(0x0436a6b8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=114 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690484(0x0436a6b4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=115 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690480(0x0436a6b0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=116 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690476(0x0436a6ac) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=117 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690472(0x0436a6a8) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=118 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690468(0x0436a6a4) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=119 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690464(0x0436a6a0) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=120 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690460(0x0436a69c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=121 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690456(0x0436a698) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=122 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690452(0x0436a694) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=123 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690448(0x0436a690) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=124 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690444(0x0436a68c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=125 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690440(0x0436a688) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=126 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690436(0x0436a684) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=127 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690432(0x0436a680) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=128 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690428(0x0436a67c) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=129 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690424(0x0436a678) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=130 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00651e57 value=70690420(0x0436a674) tid=6764 ebpret=0x00678092 ebpret2=0x005e97df scan=0x00658634,0x00658afa,0x0076da98,0x00678092
watchhit seq=131 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690424(0x0436a678) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=132 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690428(0x0436a67c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=133 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690432(0x0436a680) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=134 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690436(0x0436a684) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=135 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690440(0x0436a688) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=136 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690444(0x0436a68c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=137 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690448(0x0436a690) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=138 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690452(0x0436a694) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=139 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690456(0x0436a698) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=140 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690460(0x0436a69c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=141 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690464(0x0436a6a0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=142 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690468(0x0436a6a4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=143 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690472(0x0436a6a8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=144 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690476(0x0436a6ac) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=145 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690480(0x0436a6b0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=146 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690484(0x0436a6b4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=147 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690488(0x0436a6b8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=148 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690492(0x0436a6bc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=149 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690496(0x0436a6c0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=150 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690500(0x0436a6c4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=151 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690504(0x0436a6c8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=152 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690508(0x0436a6cc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=153 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690512(0x0436a6d0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=154 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690516(0x0436a6d4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=155 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690520(0x0436a6d8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=156 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690524(0x0436a6dc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=157 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690528(0x0436a6e0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=158 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690532(0x0436a6e4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=159 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690536(0x0436a6e8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=160 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690540(0x0436a6ec) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=161 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690544(0x0436a6f0) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=162 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690548(0x0436a6f4) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=163 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690552(0x0436a6f8) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=164 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690556(0x0436a6fc) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=165 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690560(0x0436a700) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=166 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690564(0x0436a704) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=167 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690568(0x0436a708) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=168 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690572(0x0436a70c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=169 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690576(0x0436a710) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=170 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690580(0x0436a714) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=171 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690584(0x0436a718) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=172 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690588(0x0436a71c) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=173 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690592(0x0436a720) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000
watchhit seq=174 mark=2 slot=1 dr6=0xffff0ff2 eip=0x00678328 value=70690596(0x0436a724) tid=6764 ebpret=0x005e97df ebpret2=0x734c2dea scan=0x007a8438,0x005e97df,0x0079fca0,0x00270000

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long