Compare commits
15 Commits
3fa723c3cc
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 8135ff96bf | |||
| 3ac184a2de | |||
| 8ee791ad0c | |||
| 2fdc92b8ef | |||
| 78520ee48f | |||
| 83cf10495e | |||
| c725e7ebc3 | |||
| 186fc303e5 | |||
| d288b9fa6b | |||
| e064a49c37 | |||
| 12fb5d3b55 | |||
| 7ee09de73f | |||
| 835d339829 | |||
| a29f77eb5e | |||
| 92287bd8e1 |
@@ -3,6 +3,10 @@ __pycache__/
|
|||||||
*.pyc
|
*.pyc
|
||||||
/work/
|
/work/
|
||||||
/work-*.txt
|
/work-*.txt
|
||||||
|
/contrib/re/work/
|
||||||
|
/contrib/re/work-*.txt
|
||||||
/build/
|
/build/
|
||||||
|
/dist/
|
||||||
/vendor/
|
/vendor/
|
||||||
/scratch/
|
/scratch/
|
||||||
|
/contrib/re/scratch/
|
||||||
|
|||||||
@@ -1,108 +1,116 @@
|
|||||||
# 2077 Edge Weight Mod
|
# MomentumGPS
|
||||||
|
|
||||||
Experimental Cyberpunk 2077 GPS route-weighting mod tooling.
|
Cyberpunk 2077 RED4ext plugin that improves player GPS routing by penalizing
|
||||||
|
short-segment churn in the native GPS solver. The validated default pushes the
|
||||||
|
GPS toward smoother, higher-momentum driving corridors without globally forcing
|
||||||
|
every route onto highways.
|
||||||
|
|
||||||
## Feasibility
|
## Current Status
|
||||||
|
|
||||||
Cyberpunk exposes a native `gamegpsGPSSystem`, but the current public RTTI dump does
|
Working RED4ext plugin, validated in-game.
|
||||||
not expose script-callable methods for replacing or overriding the GPS planner. The
|
|
||||||
useful surfaces are generated traffic resources:
|
|
||||||
|
|
||||||
- `worldTrafficPersistentResource.data.lanes`
|
- Route scoring patch: enabled.
|
||||||
- `worldTrafficLanePersistent.length`
|
- Current fixed ordinary-edge penalty: `80.0`.
|
||||||
- `worldTrafficLanePersistent.maxSpeed`
|
- Live tuning: removed from the release build.
|
||||||
- `worldTrafficLanePersistent.flags`
|
- Highway multiplier/class weighting experiments: not part of the playable
|
||||||
- `worldTrafficLanePersistent.playerGPSInfo`
|
default.
|
||||||
- `worldTrafficPersistentLaneConnectionsResource.data`
|
|
||||||
- `worldTrafficConnectivityOutLane.exitProbabilityCompressed`
|
|
||||||
- `worldTrafficConnectivityOutLane.isSharpAngle`
|
|
||||||
- `worldTrafficLanePersistentFlags.Highway`
|
|
||||||
- `worldTrafficLanePersistentFlags.GPSOnly`
|
|
||||||
|
|
||||||
The in-game GPS path is computed natively over generated traffic graph data. A
|
The active package is a RED4ext plugin only:
|
||||||
full replacement planner would require native hooks or patching the game
|
|
||||||
executable. A feasible REDmod-style mod has to patch generated graph resources
|
|
||||||
and test which fields the native planner actually consumes.
|
|
||||||
|
|
||||||
## Current Implementation
|
|
||||||
|
|
||||||
Current active work is a RED4ext shim under `red4ext/EdgeWeightGPS`. It has
|
|
||||||
confirmed the world-map GPS route path runs through the native async traffic
|
|
||||||
route pipeline, not the script-facing `RunGPSQuery`/`UpdateGPSQuery` helpers.
|
|
||||||
The shim can log the query lifecycle, async traffic result handoff, and route
|
|
||||||
postprocess stages.
|
|
||||||
|
|
||||||
A later spatial edge-cost prototype hooked the native local GPS edge-cost
|
|
||||||
callback at `0x44f838` and successfully changed thousands of candidate edge
|
|
||||||
costs in live route-producer calls. A controlled in-game inversion test still
|
|
||||||
produced byte-identical final `GPSQueryResultFetch` route records before and
|
|
||||||
after flipping highway weights from nearly free to extremely expensive. Treat
|
|
||||||
that hook as a useful local-search diagnostic, not the final player GPS
|
|
||||||
weighting surface.
|
|
||||||
|
|
||||||
An experimental traffic candidate scorer hook at RVA `0x8d46cc` proved the game
|
|
||||||
does consult traffic lane flags while selecting route/projection candidates:
|
|
||||||
highway, road, and pavement flags were visible live and the hook changed their
|
|
||||||
scores. That detour currently crashes during load, so it is disabled by default
|
|
||||||
in source and disabled in the local game install as `EdgeWeightGPS.dll.disabled`.
|
|
||||||
It should be treated as evidence and an RE lead, not a playable mod.
|
|
||||||
|
|
||||||
The older data-only tooling remains in the repo for reference:
|
|
||||||
|
|
||||||
This repo currently contains WolvenKit-export patchers:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
python3 tools/patch_traffic_lanes.py exported-json-dir patched-json-dir
|
|
||||||
python3 tools/patch_lane_connections.py all.traffic_persistent.json all.lane_connections.json patched.lane_connections.json
|
|
||||||
```
|
|
||||||
|
|
||||||
`patch_traffic_lanes.py` recursively scans WolvenKit JSON exports for `lanes`
|
|
||||||
arrays that look like `worldTrafficLanePersistent` data and applies configurable
|
|
||||||
speed weighting:
|
|
||||||
|
|
||||||
- highways get boosted toward a preferred GPS speed in the game's lane scale
|
|
||||||
- regular roads keep a moderate speed floor
|
|
||||||
- pavement, crosswalk, and disabled traffic lanes are left alone
|
|
||||||
- optional non-highway speed caps can make highways more attractive
|
|
||||||
|
|
||||||
In-game testing disproved `maxSpeed` as the main GPS routing lever: even highway
|
|
||||||
speed `120` did not change GPS routes, although freeway traffic visibly moved
|
|
||||||
faster. Treat speed patches as traffic simulation experiments, not route
|
|
||||||
weighting.
|
|
||||||
|
|
||||||
`patch_lane_connections.py` patches `all.lane_connections` by raising
|
|
||||||
highway-enter/stay edge probabilities and lowering competing non-highway exits.
|
|
||||||
That candidate loaded in game, but live testing did not show a GPS routing
|
|
||||||
change.
|
|
||||||
|
|
||||||
After patching, deserialize the JSON back into CR2W and pack the resulting
|
|
||||||
resources into an archive.
|
|
||||||
|
|
||||||
The toolbox now has WolvenKit CLI installed:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
toolbox run --container 2077 bash -lc '$HOME/.dotnet/tools/cp77tools --help'
|
|
||||||
```
|
|
||||||
|
|
||||||
See [docs/tooling.md](docs/tooling.md) for the end-to-end archive build flow.
|
|
||||||
See [docs/traffic-system-debrief.md](docs/traffic-system-debrief.md) for the
|
|
||||||
detailed feasibility and traffic graph notes.
|
|
||||||
|
|
||||||
## Status
|
|
||||||
|
|
||||||
A conservative speed archive, an aggressive speed archive, and a connection
|
|
||||||
probability archive were built from the local Flatpak Steam Phantom Liberty
|
|
||||||
install. All `zz_edge` archives are currently disabled in the game folder.
|
|
||||||
|
|
||||||
The RED4ext plugin is also currently disabled for normal play:
|
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled
|
red4ext/plugins/MomentumGPS/MomentumGPS.dll
|
||||||
|
red4ext/plugins/MomentumGPS/README.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## What It Patches
|
||||||
|
|
||||||
|
Reverse engineering found the player GPS route search loop around the native
|
||||||
|
solver relaxation cluster. The useful patch surface is not the script-facing
|
||||||
|
`RunGPSQuery`/`UpdateGPSQuery` helpers and not generated traffic `maxSpeed`
|
||||||
|
fields. The playable hook patches the two ordinary adjacency expansion sites
|
||||||
|
feeding the native relax/update routine at `0x40ba58`.
|
||||||
|
|
||||||
|
The plugin adds a fixed cost to ordinary edge expansion. In practice, this makes
|
||||||
|
many tiny street segments and repeated 90-degree stair-steps less attractive,
|
||||||
|
while still allowing local roads when they are the right path.
|
||||||
|
|
||||||
|
This is an inline native patch against tested Cyberpunk 2077 executable RVAs. A
|
||||||
|
future game update may require fresh verification.
|
||||||
|
|
||||||
|
## Validation Summary
|
||||||
|
|
||||||
|
The default `80.0` penalty was selected after live A/B testing:
|
||||||
|
|
||||||
|
- `0.0`: vanilla behavior; visibly stair-stepped in highlighted routes.
|
||||||
|
- `40.0`: partial improvement, but still missed useful smoother corridors.
|
||||||
|
- `80.0`: best observed result; selected smoother high-speed corridors and
|
||||||
|
passed drive testing.
|
||||||
|
- `160.0`: too high; caused bad hairpins/local access and one fallback-style
|
||||||
|
route.
|
||||||
|
|
||||||
|
Drive validation at `80.0`:
|
||||||
|
|
||||||
|
- The Dogtown route used a smoother highway corridor and drove cleanly at high
|
||||||
|
speed.
|
||||||
|
- Live minimap recalculation still worked after a deliberate detour.
|
||||||
|
- Claire/Westbrook route also drove cleanly; one blind hill/ramp surprise was
|
||||||
|
driver unfamiliarity, not a route failure.
|
||||||
|
|
||||||
|
See [contrib/re/docs/gps-momentum-field-tests.md](contrib/re/docs/gps-momentum-field-tests.md) for
|
||||||
|
the detailed test notes, screenshots, and log references.
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
Build in the Fedora toolbox:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/build_red4ext_shim.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
This writes:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Cyberpunk 2077/archive/pc/mod/zz_edge_weight_gps_highway_probability.archive.disabled
|
build/red4ext/MomentumGPS-mingw64/MomentumGPS.dll
|
||||||
```
|
```
|
||||||
|
|
||||||
Build outputs are ignored by git. Experimental archives and RED4ext DLL builds
|
## Install Locally
|
||||||
should be enabled one at a time and tested from a cold boot.
|
|
||||||
|
Only install while the game is cold.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/install_red4ext_shim.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
The install script builds the DLL and installs it into the Flatpak Steam
|
||||||
|
Cyberpunk 2077 folder. Override the game directory with
|
||||||
|
`CYBERPUNK2077_GAME_DIR` if needed.
|
||||||
|
|
||||||
|
## Package
|
||||||
|
|
||||||
|
Create a redistributable RED4ext zip:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/package_red4ext_mod.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
The package is written under `dist/` and contains the `red4ext/` folder layout
|
||||||
|
expected by the game.
|
||||||
|
|
||||||
|
## Repository Notes
|
||||||
|
|
||||||
|
Older experiments, logs, screenshots, extracted work data, and
|
||||||
|
reverse-engineering tools live under [contrib/re](contrib/re/README.md):
|
||||||
|
|
||||||
|
- REDmod/archive traffic resource patchers.
|
||||||
|
- Traffic lane and connection probability patchers.
|
||||||
|
- Static disassembly helpers.
|
||||||
|
- RED4ext logging probes.
|
||||||
|
- Earlier live-tuning helpers and presets.
|
||||||
|
|
||||||
|
Those files are retained because they explain the route-finding system and
|
||||||
|
document failed approaches, but they are not part of the current playable
|
||||||
|
package. The important debriefs are:
|
||||||
|
|
||||||
|
- [contrib/re/docs/traffic-system-debrief.md](contrib/re/docs/traffic-system-debrief.md)
|
||||||
|
- [contrib/re/docs/red4ext-logging-shim.md](contrib/re/docs/red4ext-logging-shim.md)
|
||||||
|
- [contrib/re/docs/gps-routing-research.md](contrib/re/docs/gps-routing-research.md)
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Reverse Engineering Notes
|
||||||
|
|
||||||
|
This directory contains the investigation history for MomentumGPS:
|
||||||
|
|
||||||
|
- `docs/`: debriefs, handoff notes, routing research, and field-test notes.
|
||||||
|
- `logs/`: RED4ext logs, crash reports, and route-test screenshots.
|
||||||
|
- `tools/`: one-off reverse-engineering and data-patching helpers.
|
||||||
|
- `work/`: extracted and generated Cyberpunk traffic/navigation data.
|
||||||
|
- `presets/`: obsolete live-tuning binaries from prototype builds.
|
||||||
|
- `redscript/`: old redscript probe used before the native patch was found.
|
||||||
|
- `samples/` and `tests/`: fixtures and tests for the abandoned traffic
|
||||||
|
resource patching path.
|
||||||
|
|
||||||
|
The release plugin does not depend on this directory. It is retained as
|
||||||
|
evidence and as a starting point for future reverse-engineering work.
|
||||||
@@ -1,6 +1,285 @@
|
|||||||
# Compaction Handoff
|
# Compaction Handoff
|
||||||
|
|
||||||
Current date/time context: 2026-06-26, local timezone America/Chicago.
|
Current date/time context: 2026-06-27, local timezone America/Chicago.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Default Chosen
|
||||||
|
|
||||||
|
- After live A/B testing and two drive validations, `80.0` is the working
|
||||||
|
default for `momentum_weights.bin`.
|
||||||
|
- Source fallback was changed to
|
||||||
|
`kGpsMomentumFixedEdgePenaltyDefault = 80.0f`.
|
||||||
|
- `../tools/write_momentum_weights.py default` now writes `80.0`.
|
||||||
|
The old `8.0` value is preserved as `legacy-default`.
|
||||||
|
- Current preset meanings:
|
||||||
|
`vanilla=0.0`, `mild=4.0`, `legacy-default=8.0`, `strong=16.0`,
|
||||||
|
`default=80.0`, `silly=80.0`, `overstrong=160.0`,
|
||||||
|
`pathological=250.0`.
|
||||||
|
- `160.0` was tested and is too high: The Damned can fall back to a straight
|
||||||
|
line, and local access can develop bad hairpins/backtracking.
|
||||||
|
- Drive validation at `80.0`:
|
||||||
|
The Damned/Dogtown route drove cleanly at high speed, live minimap
|
||||||
|
recalculation worked after a detour, and the Claire route drove cleanly aside
|
||||||
|
from a driver-unfamiliarity ramp/hill surprise.
|
||||||
|
- Updated detailed notes in `./gps-momentum-field-tests.md`.
|
||||||
|
- The rebuilt source-default-80 DLL was installed while the game was cold at
|
||||||
|
about `04:17` local. Installed defaults were rewritten:
|
||||||
|
`momentum_weights.bin = 80.0`, `solver_weights.bin = 1.0`.
|
||||||
|
- Added release packaging:
|
||||||
|
`toolbox run -c 2077 ./tools/package_red4ext_mod.sh`.
|
||||||
|
Verified package:
|
||||||
|
`dist/EdgeWeightGPS-red4ext-20260627-041942.zip`, containing
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`,
|
||||||
|
`momentum_weights.bin = 80.0`, and `solver_weights.bin = 1.0`.
|
||||||
|
|
||||||
|
## 2026-06-27 Live Momentum Knob Installed
|
||||||
|
|
||||||
|
- Installed a new telemetry/control DLL at about `03:21` local while the game was
|
||||||
|
cold. Installed size: `16899519` bytes.
|
||||||
|
- Active installed config:
|
||||||
|
`solver_weights.bin = 1.0` and `momentum_weights.bin = 8.0`.
|
||||||
|
- The plugin log beside the DLL was truncated to zero after install:
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log`.
|
||||||
|
- `momentum_weights.bin` is one little-endian `float32`, hot-polled every
|
||||||
|
500 ms. `0.0` disables the fixed ordinary-edge penalty; `8.0` is the current
|
||||||
|
prototype; larger values are stress tests. Presets are in
|
||||||
|
`../presets/momentum/` and can be written live with
|
||||||
|
`python3 ../tools/write_momentum_weights.py <preset>`.
|
||||||
|
- New presets:
|
||||||
|
`vanilla=0.0`, `mild=4.0`, `default=8.0`, `strong=16.0`,
|
||||||
|
`silly=80.0`, `pathological=250.0`.
|
||||||
|
- The `gps-momentum-summary` line now waits for a nonzero result route-record
|
||||||
|
count before marking a query as summarized. It should report
|
||||||
|
`gpsResultRouteCount` directly instead of showing `0` from the staging fetch.
|
||||||
|
- Build verification passed:
|
||||||
|
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
|
||||||
|
- Next test should start with current `momentum=8.0`, then while the game is
|
||||||
|
open switch to `vanilla` and `silly` on one or two fixed routes to confirm
|
||||||
|
live A/B behavior. Good candidates from the last run: The Damned/Dogtown
|
||||||
|
pathological route and the SW Badlands fuel station route.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Telemetry Test Installed
|
||||||
|
|
||||||
|
- Installed telemetry DLL at about `03:04` local while the game was cold.
|
||||||
|
Installed size: `16792931` bytes.
|
||||||
|
- Source flags for the installed test:
|
||||||
|
`kEnableGpsNodeMultiplierInlinePatch = true`,
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = true`,
|
||||||
|
`kEnableGpsQueryResultTraceHooks = true`, and
|
||||||
|
`kEnableGpsQueryResultRecordDump = false`.
|
||||||
|
- `solver_weights.bin` is vanilla `1.0`, so the highway multiplier hook should
|
||||||
|
be neutral. The behavioral change remains the fixed ordinary-edge additive
|
||||||
|
penalty only: `kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- New telemetry is a compact `gps-momentum-summary` line emitted once per
|
||||||
|
completed tracked map-route query. It logs `callsA`, `callsB`, `callsTotal`,
|
||||||
|
`penaltyTotal`, global call counters, plus light route/result counts. The
|
||||||
|
counters are incremented directly in the two patched ordinary expansion caves.
|
||||||
|
- The raw route-record dump is disabled for this run to keep logs readable.
|
||||||
|
- The installed RED4ext log was truncated to zero before handing the game back.
|
||||||
|
- Next test routine: launch, load the fixed car save, open the map, plot the
|
||||||
|
usual sequence with a few seconds between each: side job, Sinnerman, Claire,
|
||||||
|
custom pin. More destinations are useful only after verifying the summary
|
||||||
|
lines are present.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Penalty Test Installed
|
||||||
|
|
||||||
|
- The game was cold, so an enabled momentum-penalty test DLL was installed to
|
||||||
|
the Cyberpunk RED4ext plugin directory.
|
||||||
|
- Source flag for the installed test:
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = true`.
|
||||||
|
- The old highway multiplier hook is still compiled in, but
|
||||||
|
`solver_weights.bin` was written to `vanilla` (`1.0`) so highway preference is
|
||||||
|
neutral for this A/B. The active behavioral change should be only the fixed
|
||||||
|
ordinary-edge additive penalty.
|
||||||
|
- Active fixed penalty:
|
||||||
|
`kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- Expected log lines on launch:
|
||||||
|
`momentum fixed-edge penalty active value=8 sites=ordinary-expansion` plus
|
||||||
|
`gps-momentum-penalty-inline-patch applied site=expand-list-a` and
|
||||||
|
`site=expand-list-b`.
|
||||||
|
- First test routine should be the fixed car save and usual route sequence:
|
||||||
|
side job, Sinnerman, Claire, custom pin. If stable, also test Violence,
|
||||||
|
The Gig/Cassius Rider, Aldecaldo/Badlands, and unfinished-highway
|
||||||
|
cyberpsycho route.
|
||||||
|
|
||||||
|
## 2026-06-27 Disabled Momentum Penalty Prototype
|
||||||
|
|
||||||
|
- Static disassembly of the full async solver relaxation cluster is updated.
|
||||||
|
`0x40ba58` has exactly four direct callers:
|
||||||
|
`0x40b175`, `0x40b4ac`, `0x40b6d5`, and `0x40bca7`.
|
||||||
|
- The ordinary adjacency walkers are still the clean first patch surface:
|
||||||
|
`0x40b304` reaches relax at `0x40b4ac`, and `0x40b540` reaches relax at
|
||||||
|
`0x40b6d5`. Both compute vanilla tentative `g` in `xmm6`, copy it to
|
||||||
|
`xmm3`, write `f = g + h` at `[rsp+0x20]`, and then call `0x40ba58`.
|
||||||
|
- Patch starts are `0x40b49a` for list A and `0x40b6c3` for list B. Each
|
||||||
|
replaces 23 bytes ending at the vanilla `0x40ba58` call and jumps to a
|
||||||
|
private executable cave. The cave reproduces the overwritten vanilla math,
|
||||||
|
adds a fixed nonnegative cost to `xmm6`, recomputes `f` from the penalized
|
||||||
|
`g`, calls vanilla `0x40ba58`, and jumps back after the overwritten block.
|
||||||
|
- Added a disabled-by-default RED4ext prototype in
|
||||||
|
`red4ext/EdgeWeightGPS/src/Main.cpp`:
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = false`,
|
||||||
|
`kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- This first prototype is only a short-segment/churn lever. It adds a fixed
|
||||||
|
per-edge penalty on ordinary neighbor expansion, so routes that stair-step
|
||||||
|
through many small pieces become more expensive without making highways
|
||||||
|
cheaper. It does not yet compute turn angle, ramp transition cost, or
|
||||||
|
predecessor/current/neighbor geometry.
|
||||||
|
- The first prototype intentionally leaves the two non-ordinary relax paths
|
||||||
|
vanilla:
|
||||||
|
`0x40b175` appears to be a target/terminal candidate path, and `0x40bca7`
|
||||||
|
appears to be a special continuation/end-candidate path from `0x40bbbc`.
|
||||||
|
Patch them only after the ordinary expansion test proves stable.
|
||||||
|
- Build verification passed in toolbox:
|
||||||
|
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
|
||||||
|
- The prototype was not installed into the live game directory. To test later,
|
||||||
|
flip `kEnableGpsMomentumPenaltyInlinePatch` to `true`, rebuild, install only
|
||||||
|
after the game is cold, and compare against the fixed El Coyote route set.
|
||||||
|
|
||||||
|
## 2026-06-27 Routing Literature And Engine Research
|
||||||
|
|
||||||
|
- Added `./gps-routing-research.md` as the durable summary of the GPS
|
||||||
|
routing research pass.
|
||||||
|
- Main conclusion: stop treating "prefer highways" as the objective. It is a
|
||||||
|
useful proxy, especially for AutoDrive, but manual player GPS should optimize
|
||||||
|
momentum/corridor quality: low turn count, low short-segment churn, good
|
||||||
|
continuity, fewer awkward ramps/intersections, and later slope/airtime risk.
|
||||||
|
- Production engines split edge cost from transition/turn cost. Mirror that at
|
||||||
|
the native solver relaxation surface instead of using another broad highway
|
||||||
|
multiplier. Prefer nonnegative additive penalties first so the vanilla
|
||||||
|
A*/Dijkstra-like assumptions stay sane.
|
||||||
|
- The user explicitly allows external dependencies if they are justified.
|
||||||
|
Recommendation after research: do not link a full production engine yet.
|
||||||
|
Borrow OSRM/Valhalla/GraphHopper cost-model ideas now, and consider
|
||||||
|
RoutingKit or a tiny custom A* runner offline for graph/cost experiments.
|
||||||
|
- Full in-game engine replacement remains feasible but expensive. It requires
|
||||||
|
extracting/owning the full drivable graph, mapping live start/target points,
|
||||||
|
computing the path, and converting the result back into Cyberpunk route
|
||||||
|
handles/records. Revisit only if native relaxation cannot support the desired
|
||||||
|
model.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum/Corridor Direction
|
||||||
|
|
||||||
|
- The user reframed the target objective: player GPS should optimize for
|
||||||
|
keeping speed and momentum, not for legal driving or traffic-sim behavior.
|
||||||
|
The player often ignores speed limits, stop signs, and normal traffic flow;
|
||||||
|
in a fast car, any long clean corridor can be a high-speed corridor.
|
||||||
|
- Highway preference is still a useful proxy, and likely valuable for
|
||||||
|
AutoDrive, but it is not the true goal for manual player routing. Short
|
||||||
|
highway hops can lose time on ramps, deceleration, awkward merges, and
|
||||||
|
airtime. Some side streets, especially long straight corridors around
|
||||||
|
Heywood, can be better than nearby highways.
|
||||||
|
- Real bad-route signatures to target:
|
||||||
|
stairstepping, repeated 90-degree turns, stop-start intersection chains,
|
||||||
|
short-segment churn, unnecessary ramp/on-off transitions, high-conflict
|
||||||
|
traffic areas, and airborne or steep offramp/hill segments where the car loses
|
||||||
|
acceleration.
|
||||||
|
- This means the next model should be a momentum/corridor cost model, not a
|
||||||
|
pure road-class model:
|
||||||
|
distance plus turn penalties, intersection/conflict penalties, short-edge
|
||||||
|
churn penalties, ramp transition penalties, grade/airtime risk penalties,
|
||||||
|
with bonuses for long straight corridor continuity and modest
|
||||||
|
highway/arterial continuity.
|
||||||
|
- The proven inline patch at `0x40bb98` only sees the current node flags. It can
|
||||||
|
prove and tune `Highway` preference, but it cannot distinguish staying
|
||||||
|
straight through a corridor from diving through a ramp, hairpin, or
|
||||||
|
intersection chain. That limitation explains why highway-only tuning has a
|
||||||
|
narrow useful range and can become pathological.
|
||||||
|
- Next RE target should be the edge expansion/relaxation cluster, especially
|
||||||
|
`0x40b304`, `0x40b540`, and `0x40ba58`, where the solver has current and
|
||||||
|
neighbor handles and assembles the tentative `g` cost. Identify live registers
|
||||||
|
and struct fields for current state, neighbor state, positions, predecessor or
|
||||||
|
inbound direction, node flags, and degree/intersection hints.
|
||||||
|
- Feasibility tiers:
|
||||||
|
- Proven/easy: road-class multiplier at `0x40bb98`.
|
||||||
|
- Very feasible next: additive penalties at edge relaxation for short edges,
|
||||||
|
intersections, highway/non-highway churn, and slope if endpoint positions
|
||||||
|
are visible.
|
||||||
|
- Biggest likely win: turn-angle or corridor-continuity penalties if
|
||||||
|
predecessor/current/neighbor positions or equivalent direction vectors are
|
||||||
|
accessible.
|
||||||
|
- Possible but harder: airtime/grade risk based on vertical deltas and road
|
||||||
|
curvature.
|
||||||
|
- Probably not worth first: true velocity/acceleration state in A*/Dijkstra,
|
||||||
|
because that expands solver state and risks breaking assumptions.
|
||||||
|
- Keep the traffic-sim/spatial road-class work as supplemental data. It can
|
||||||
|
still label highway, arterial, road, pavement, and unknown areas, but it
|
||||||
|
should feed a broader cost function rather than act as the whole objective.
|
||||||
|
- Suggested prototype order after compaction:
|
||||||
|
1. Static analyze the edge relaxation cluster around `0x40b304` and
|
||||||
|
`0x40ba58`.
|
||||||
|
2. Build a low-noise trace or inline probe around route-windowed calls only;
|
||||||
|
do not reintroduce pathological hot-loop logging.
|
||||||
|
3. First patch nonnegative additive costs only, so vanilla A*/Dijkstra
|
||||||
|
ordering remains sane.
|
||||||
|
4. Start with short-edge and turn/continuity penalties, then add ramp churn
|
||||||
|
and slope/airtime penalties if the required fields are available.
|
||||||
|
5. Validate on the fixed El Coyote city-center set plus long cross-town
|
||||||
|
routes: Violence, No-Tell Motel, The Gig/Cassius Rider, Aldecaldo/Badlands,
|
||||||
|
and the unfinished-highway cyberpsycho route. Also verify AutoDrive is not
|
||||||
|
accidentally given a different cost surface from manual driving.
|
||||||
|
|
||||||
|
## 2026-06-27 Tuning Status And Safe Installed State
|
||||||
|
|
||||||
|
- The mod is disabled on disk for the next game launch. Active
|
||||||
|
`EdgeWeightGPS.dll` was renamed to
|
||||||
|
`EdgeWeightGPS.live-tunable-92287bd.dll.disabled` in the Cyberpunk RED4ext
|
||||||
|
plugin directory. `solver_weights.bin` was reset to vanilla `1.0`.
|
||||||
|
- This does not unload the DLL from a currently running game process; it only
|
||||||
|
guarantees the next cold start has no active EdgeWeightGPS plugin.
|
||||||
|
- Latest committed live-tunable solver patch before this note:
|
||||||
|
`92287bd Add live-tunable GPS solver highway weight`.
|
||||||
|
- Live tuning results from the El Coyote / city-center route set:
|
||||||
|
- `0.80`: plugin loaded and patched, but route handles were identical to
|
||||||
|
vanilla for side job and Claire; Sinnerman/custom changed only packed
|
||||||
|
metadata on the same handles.
|
||||||
|
- `0.70`: still effectively identical at the handle level. Side and Claire
|
||||||
|
matched vanilla/0.80; Sinnerman and custom were metadata-only changes.
|
||||||
|
- `0.55`: visibly crossed the threshold. User reported the custom pin did the
|
||||||
|
funky city-center hairpin again. Archived log shows post-reload route
|
||||||
|
records changing into 37-49 record alternatives, not just metadata tweaks.
|
||||||
|
- Interpretation: the useful tuning threshold for this start/target set is
|
||||||
|
between `0.70` and `0.55`, but `0.55` is already too aggressive for at least
|
||||||
|
the custom pin. Next candidate should be around `0.62` or `0.65`, then test a
|
||||||
|
wider set of long routes before choosing a default.
|
||||||
|
- New evidence logs:
|
||||||
|
`../logs/EdgeWeightGPS_solver080_3548.log`,
|
||||||
|
`../logs/EdgeWeightGPS_solver070_3900.log`,
|
||||||
|
`../logs/EdgeWeightGPS_solver055_hairpin_4156.log`.
|
||||||
|
|
||||||
|
## 2026-06-26 Confirmed Solver-Cost Patch
|
||||||
|
|
||||||
|
- We have unequivocally found the player GPS route-cost lever.
|
||||||
|
- The crashing RED4ext detour on `0x40bb40` has been replaced by an inline
|
||||||
|
patch at the road-tail block `0x40bb98`. The patch preserves vanilla
|
||||||
|
`node+0x93` behavior, checks `node+0x88 & 0x4000` for `Highway`, and then
|
||||||
|
multiplies highway lane cost by a tunable float.
|
||||||
|
- This inline patch avoids the register-clobber crash from the C++ detour.
|
||||||
|
Static disassembly showed the optimized caller reusing volatile state after
|
||||||
|
calling the tiny vanilla multiplier helper.
|
||||||
|
- The proof build used highway multiplier `0.35` and visibly changed player
|
||||||
|
map routes. It also caused over-aggressive behavior, including a bad custom
|
||||||
|
pin hairpin around the city-center roundabout, proving the hook is real but
|
||||||
|
that `0.35` is too low.
|
||||||
|
- The vanilla A/B build disabled only the inline multiplier patch and restored
|
||||||
|
obviously different route choices. User confirmed the custom pin returned to
|
||||||
|
the straight city-center roundabout route, while the `0.35` build took the
|
||||||
|
wrong hairpin.
|
||||||
|
- The live-tunable build enables the inline patch with default highway
|
||||||
|
multiplier `0.80` and polls
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/solver_weights.bin` every 500 ms. The file is
|
||||||
|
exactly one little-endian float32 highway multiplier.
|
||||||
|
- The inline patch is deliberately broad across the vanilla road-tail branch:
|
||||||
|
reaching `0x40bb98` already means vanilla selected road-style modes `0/2/4`,
|
||||||
|
so we do not hard-gate on `solver+0xc4 == 2`. This avoids creating a manual
|
||||||
|
drive/autodrive disparity. Pedestrian mode `1` uses a different vanilla
|
||||||
|
branch and is not changed by this road-tail patch.
|
||||||
|
- Preset writer:
|
||||||
|
`../tools/write_solver_weights.py`. Preset binaries live in
|
||||||
|
`../presets/solver_weights/`: `vanilla`, `mild`, `default`, `strong`,
|
||||||
|
`proof-highway-cheap`, and `highway-expensive`.
|
||||||
|
- Evidence logs:
|
||||||
|
`../logs/EdgeWeightGPS_inline_highway035_changed_routes_1449.log` and
|
||||||
|
`../logs/EdgeWeightGPS_vanilla_ab_2120.log`.
|
||||||
|
|
||||||
## 2026-06-26 Static Update
|
## 2026-06-26 Static Update
|
||||||
|
|
||||||
@@ -34,7 +313,7 @@ Current date/time context: 2026-06-26, local timezone America/Chicago.
|
|||||||
not directly into `all.traffic_persistent`. Final route records can still be
|
not directly into `all.traffic_persistent`. Final route records can still be
|
||||||
joined to `worldTrafficLanePersistent.nodeRefHash`, but that is downstream of
|
joined to `worldTrafficLanePersistent.nodeRefHash`, but that is downstream of
|
||||||
the search.
|
the search.
|
||||||
- Added `tools/analyze_vand_navigation.py` to decode VAND blobs from extracted
|
- Added `../tools/analyze_vand_navigation.py` to decode VAND blobs from extracted
|
||||||
streamingsector JSON. On the three extracted samples:
|
streamingsector JSON. On the three extracted samples:
|
||||||
`files=3 blobs=300 points=5059 coords=5046`, all masks were `0x0003`, and
|
`files=3 blobs=300 points=5059 coords=5046`, all masks were `0x0003`, and
|
||||||
dominant classes were `1`, `4`, `5`, `3`.
|
dominant classes were `1`, `4`, `5`, `3`.
|
||||||
@@ -46,9 +325,9 @@ Current date/time context: 2026-06-26, local timezone America/Chicago.
|
|||||||
|
|
||||||
## 2026-06-26 Spatial Edge-Cost Prototype
|
## 2026-06-26 Spatial Edge-Cost Prototype
|
||||||
|
|
||||||
- Added `tools/generate_spatial_edge_grid.py`, which combines
|
- Added `../tools/generate_spatial_edge_grid.py`, which combines
|
||||||
`work/raw-segment-json/all.traffic_persistent.json` lane flags with
|
`../work/raw-segment-json/all.traffic_persistent.json` lane flags with
|
||||||
`work/traffic-companions/json/all.lane_polygons.json` polygons.
|
`../work/traffic-companions/json/all.lane_polygons.json` polygons.
|
||||||
- Generated
|
- Generated
|
||||||
`red4ext/EdgeWeightGPS/src/GeneratedSpatialRoadGrid.hpp`. The grid is
|
`red4ext/EdgeWeightGPS/src/GeneratedSpatialRoadGrid.hpp`. The grid is
|
||||||
332 x 361 cells at 32 m/cell, origin `(-4640, -7392)`, with final cell
|
332 x 361 cells at 32 m/cell, origin `(-4640, -7392)`, with final cell
|
||||||
@@ -68,7 +347,7 @@ Current date/time context: 2026-06-26, local timezone America/Chicago.
|
|||||||
- Fixed `DetourGpsEdgeCost` logging: native `0x44f838` indexes the provider
|
- Fixed `DetourGpsEdgeCost` logging: native `0x44f838` indexes the provider
|
||||||
cost table by neighbor point class, not source point class.
|
cost table by neighbor point class, not source point class.
|
||||||
- Build verification passed in the Fedora toolbox:
|
- Build verification passed in the Fedora toolbox:
|
||||||
`toolbox run -c 2077 tools/build_red4ext_shim.sh`.
|
`toolbox run -c 2077 ../tools/build_red4ext_shim.sh`.
|
||||||
- The resulting DLL remains uninstalled. Game install still has only
|
- The resulting DLL remains uninstalled. Game install still has only
|
||||||
`EdgeWeightGPS.dll.disabled`, not an active plugin DLL.
|
`EdgeWeightGPS.dll.disabled`, not an active plugin DLL.
|
||||||
- Follow-up live-tuning support adds
|
- Follow-up live-tuning support adds
|
||||||
@@ -76,8 +355,8 @@ Current date/time context: 2026-06-26, local timezone America/Chicago.
|
|||||||
float32 values in highway, road, GPSOnly, pavement, unknown order. The plugin
|
float32 values in highway, road, GPSOnly, pavement, unknown order. The plugin
|
||||||
polls this file on route-producer entry, so changing it and replotting a route
|
polls this file on route-producer entry, so changing it and replotting a route
|
||||||
applies new weights without rebuild/relaunch.
|
applies new weights without rebuild/relaunch.
|
||||||
- `tools/write_spatial_weights.py` can write the active file or generate
|
- `../tools/write_spatial_weights.py` can write the active file or generate
|
||||||
presets. Generated presets live in `work/spatial-weights/`:
|
presets. Generated presets live in `../work/spatial-weights/`:
|
||||||
`vanilla.bin`, `current.bin`, `highway-free.bin`,
|
`vanilla.bin`, `current.bin`, `highway-free.bin`,
|
||||||
`highway-expensive.bin`, and `surface-extreme.bin`.
|
`highway-expensive.bin`, and `surface-extreme.bin`.
|
||||||
|
|
||||||
@@ -89,7 +368,7 @@ Important caveat:
|
|||||||
searches, not the whole route. Do not gate the spatial patch only on that
|
searches, not the whole route. Do not gate the spatial patch only on that
|
||||||
caller unless a later test proves it covers the desired route segment.
|
caller unless a later test proves it covers the desired route segment.
|
||||||
- Live inversion test log:
|
- Live inversion test log:
|
||||||
`logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`.
|
`../logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`.
|
||||||
The plugin reloaded highway-free weights at `+74681ms`
|
The plugin reloaded highway-free weights at `+74681ms`
|
||||||
(`H=0.05`, all others `19.0`), then highway-expensive weights at `+235135ms`
|
(`H=0.05`, all others `19.0`), then highway-expensive weights at `+235135ms`
|
||||||
(`H=19.0`, all others `0.05`). The four repeated map routes after the flip
|
(`H=19.0`, all others `0.05`). The four repeated map routes after the flip
|
||||||
@@ -110,19 +389,19 @@ Important caveat:
|
|||||||
- Older DLLs are preserved disabled as:
|
- Older DLLs are preserved disabled as:
|
||||||
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled`
|
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled`
|
||||||
and `EdgeWeightGPS.dd1423b.dll.disabled`.
|
and `EdgeWeightGPS.dd1423b.dll.disabled`.
|
||||||
- Source defaults now enable the full async solver multiplier hook:
|
- Source defaults enable the inline road-tail patch:
|
||||||
`kEnableGpsMultiplierHooks = true`.
|
`kEnableGpsNodeMultiplierInlinePatch = true`.
|
||||||
- The current behavior patch is deliberately narrow and diagnostic:
|
- Source defaults do not enable the old full-function detour:
|
||||||
`DetourGpsNodeMultiplier` hooks native `0x40bb40`, applies only when
|
`kEnableGpsMultiplierHooks = false`.
|
||||||
`job+0xc4 == 2` (driving route mode), reads lane/node flags from
|
- Current behavior patch is the inline `0x40bb98` code-cave patch. It preserves
|
||||||
`node+0x88`, and multiplies vanilla node edge cost by highway `0.35`,
|
vanilla road cost except for highway lanes, whose cost is multiplied by the
|
||||||
GPSOnly `1.10`, pavement `1.25`, and all other flags `1.0`.
|
current `solver_weights.bin` float. Installed default is `0.80`.
|
||||||
- `0x40bb00` auxiliary/reverse multiplier is hooked only for signature logging;
|
- `solver_weights.bin` lives beside the DLL and is hot-polled every 500 ms.
|
||||||
it is not patched yet.
|
|
||||||
- The plugin log was truncated immediately before installing this build.
|
- The plugin log was truncated immediately before installing this build.
|
||||||
- Latest archived test log:
|
- Latest archived test log:
|
||||||
`logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`.
|
`../logs/EdgeWeightGPS_vanilla_ab_2120.log`.
|
||||||
- Game is cold as of the latest user message.
|
- A cold restart is required after installing a new DLL; changing
|
||||||
|
`solver_weights.bin` after that is hot-reloaded.
|
||||||
|
|
||||||
## 2026-06-26 Full Async Solver Findings
|
## 2026-06-26 Full Async Solver Findings
|
||||||
|
|
||||||
@@ -284,7 +563,7 @@ Route result records:
|
|||||||
|
|
||||||
- `0x7094b8` output records are 0x28-byte route segment records.
|
- `0x7094b8` output records are 0x28-byte route segment records.
|
||||||
- `h00` in those records matches `worldTrafficLanePersistent.nodeRefHash`.
|
- `h00` in those records matches `worldTrafficLanePersistent.nodeRefHash`.
|
||||||
- Route records can be joined to `work/raw-segment-json/all.traffic_persistent.json`.
|
- Route records can be joined to `../work/raw-segment-json/all.traffic_persistent.json`.
|
||||||
- The low byte of route-record `u08` is not the same as the search point class.
|
- The low byte of route-record `u08` is not the same as the search point class.
|
||||||
- The log's human wall timestamp has a millisecond rollover bug around second
|
- The log's human wall timestamp has a millisecond rollover bug around second
|
||||||
boundaries. Use the `+Nms` elapsed field for ordering and durations.
|
boundaries. Use the `+Nms` elapsed field for ordering and durations.
|
||||||
@@ -336,9 +615,9 @@ The user clicked:
|
|||||||
Use:
|
Use:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 tools/summarize_gps_route_records.py \
|
python3 ../tools/summarize_gps_route_records.py \
|
||||||
--traffic-json work/raw-segment-json/all.traffic_persistent.json \
|
--traffic-json ../work/raw-segment-json/all.traffic_persistent.json \
|
||||||
logs/EdgeWeightGPS_query_route_probe_2308.log
|
../logs/EdgeWeightGPS_query_route_probe_2308.log
|
||||||
```
|
```
|
||||||
|
|
||||||
Important result table:
|
Important result table:
|
||||||
@@ -383,7 +662,7 @@ Inference:
|
|||||||
## Latest 46:50 Resolver Test Result
|
## Latest 46:50 Resolver Test Result
|
||||||
|
|
||||||
Archived log:
|
Archived log:
|
||||||
`logs/EdgeWeightGPS_resolve_handle_probe_4650.log`.
|
`../logs/EdgeWeightGPS_resolve_handle_probe_4650.log`.
|
||||||
|
|
||||||
User timing:
|
User timing:
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 563 KiB After Width: | Height: | Size: 563 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 319 KiB After Width: | Height: | Size: 319 KiB |
|
Before Width: | Height: | Size: 671 KiB After Width: | Height: | Size: 671 KiB |
|
Before Width: | Height: | Size: 601 KiB After Width: | Height: | Size: 601 KiB |
|
Before Width: | Height: | Size: 941 KiB After Width: | Height: | Size: 941 KiB |
@@ -0,0 +1,108 @@
|
|||||||
|
# GPS Momentum Field Tests
|
||||||
|
|
||||||
|
Current patch surface: fixed additive penalty on ordinary GPS solver edge
|
||||||
|
expansion, patched at the two ordinary relaxation callsites feeding
|
||||||
|
`0x40ba58`. Live tuning is through `momentum_weights.bin`.
|
||||||
|
|
||||||
|
## 2026-06-27 North Watson To Dogtown/Badlands
|
||||||
|
|
||||||
|
Starting context: player in North Watson near the motel/Cassius area. The two
|
||||||
|
main comparison routes fit in the same map viewport:
|
||||||
|
|
||||||
|
- The Damned / Dogtown, south into Pacifica.
|
||||||
|
- Fuel Station fast travel point in the southwest Badlands/Biotechnica flats.
|
||||||
|
|
||||||
|
Screenshots:
|
||||||
|
|
||||||
|
- `../logs/screenshots/the-damned-and-fuel-station-0.webp`
|
||||||
|
- `../logs/screenshots/the-damned-and-fuel-station-8.webp`
|
||||||
|
- `../logs/screenshots/the-damned-and-fuel-station-80.webp`
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `../logs/EdgeWeightGPS_live_momentum_ab_8_0_80.log`
|
||||||
|
|
||||||
|
Results:
|
||||||
|
|
||||||
|
| Route | Penalty | Expansion calls | Route records | Observed route |
|
||||||
|
| --- | ---: | ---: | ---: | --- |
|
||||||
|
| The Damned | 8 | 1,057,410 | 78 | Similar to vanilla; threads city blocks and a side highway. |
|
||||||
|
| The Damned | 0 | 1,110,243 | 87 | Similar visible corridor, slightly more route-record churn. |
|
||||||
|
| The Damned | 80 | 1,010,035 | 70 | Visibly smoother highway corridor, avoids City Center stair-stepping. |
|
||||||
|
| Fuel Station | 8 | 296,976 | 89 | Uses City Center roundabout/city threading. |
|
||||||
|
| Fuel Station | 0 | about 308k-314k | 90-92 | Similar visible corridor to 8. |
|
||||||
|
| Fuel Station | 80 | about 345k-347k | 77-78 | Converges onto the smoother highway corridor before splitting south. |
|
||||||
|
|
||||||
|
Interpretation:
|
||||||
|
|
||||||
|
- `0` and `8` are close visually in this location, despite small telemetry
|
||||||
|
changes.
|
||||||
|
- `80` is a strong proof value: it changes the coarse corridor and reduces
|
||||||
|
route-record count for the tested long routes.
|
||||||
|
- This supports the main hypothesis that a fixed per-segment additive penalty
|
||||||
|
can optimize for smoother player-driving corridors, not merely highway class.
|
||||||
|
|
||||||
|
## 2026-06-27 Broad 80 Smoke
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `../logs/EdgeWeightGPS_momentum80_broad_smoke.log`
|
||||||
|
- `../logs/EdgeWeightGPS_momentum80_drive_validation.log`
|
||||||
|
|
||||||
|
User reported no bad routes after probing:
|
||||||
|
|
||||||
|
- Claire routes differently than nearby Sinnerman, choosing a smooth Japantown
|
||||||
|
highway leg.
|
||||||
|
- Sinnerman still cuts through City Center, plausibly because that corridor is
|
||||||
|
appropriate for that destination.
|
||||||
|
- Short local routing to Cassius remains fine.
|
||||||
|
- Heywood routes remain fine and may avoid some stair-stepping.
|
||||||
|
- Routes near highways but not traffic-feasible still detour appropriately.
|
||||||
|
- One NCPD bounty used a road the user had not previously seen GPS select, and
|
||||||
|
it looked like a good fit.
|
||||||
|
|
||||||
|
Interpretation:
|
||||||
|
|
||||||
|
- No obvious local-route breakage was found at `80`.
|
||||||
|
- `80` was not immediately pathological in the sampled routes and later became
|
||||||
|
the working default after drive validation.
|
||||||
|
- Higher values still need caution; `160` later proved too high.
|
||||||
|
|
||||||
|
Drive validation at `80`:
|
||||||
|
|
||||||
|
- The Damned / Dogtown route drove cleanly in the Outlaw at sustained high
|
||||||
|
speed.
|
||||||
|
- The route surfaced a back/elevated highway through Japantown/Westbrook that
|
||||||
|
the user had not seen vanilla GPS select before.
|
||||||
|
- Live minimap recalculation after a deliberate detour still worked.
|
||||||
|
- Claire route also drove cleanly. One ramp/hill surprised the driver, but the
|
||||||
|
issue was road unfamiliarity at full speed, not bad routing.
|
||||||
|
|
||||||
|
Conclusion after the drive test: `80` is the working default.
|
||||||
|
|
||||||
|
## 2026-06-27 40/160 Bounds
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `../logs/EdgeWeightGPS_momentum40_160_tuning.log`
|
||||||
|
|
||||||
|
At `40`, the highlighted routes improved only partially:
|
||||||
|
|
||||||
|
- Claire still used the Sinnerman/City Center path instead of the smoother outer
|
||||||
|
road.
|
||||||
|
- Sinnerman remained sensible.
|
||||||
|
- The near-highway case remained acceptable.
|
||||||
|
- The NCPD bounty took the smoother outer City Center road, but retained a
|
||||||
|
Watson stair-step that `80` avoided.
|
||||||
|
|
||||||
|
At `160`, overcorrection appeared:
|
||||||
|
|
||||||
|
- Claire showed a questionable hairpin.
|
||||||
|
- The Damned produced a fallback/straight-line style route instead of a usable
|
||||||
|
road route.
|
||||||
|
- The Gig/Cassius local access got worse, asking for a backtrack and hairpin
|
||||||
|
instead of a simple nearby approach.
|
||||||
|
- NCPD bounty regressed to stair-stepping.
|
||||||
|
|
||||||
|
Conclusion: `160` is too high. The useful bracket is roughly `40 < default <
|
||||||
|
160`, with `80` currently best validated by map inspection and driving.
|
||||||
@@ -0,0 +1,435 @@
|
|||||||
|
# GPS Routing Research Notes
|
||||||
|
|
||||||
|
Current date: 2026-06-27.
|
||||||
|
|
||||||
|
This note summarizes the research pass prompted by the realization that "prefer
|
||||||
|
highways" is a proxy, not the goal. The actual player-facing goal is a route
|
||||||
|
that feels fast and drivable in Cyberpunk 2077, especially when the player is
|
||||||
|
driving aggressively and ignoring normal traffic rules.
|
||||||
|
|
||||||
|
The conclusion is that the next patch should not be another broad highway
|
||||||
|
multiplier. Production route engines and routing papers treat route quality as
|
||||||
|
multi-criteria: edge traversal cost, transition/turn cost, road hierarchy,
|
||||||
|
intersection delay, and user preferences are separate signals. For manual
|
||||||
|
Cyberpunk driving, the best analogue is a momentum/corridor model: prefer
|
||||||
|
routes that preserve speed and minimize decision points, sharp turns,
|
||||||
|
short-segment churn, and awkward ramp transitions.
|
||||||
|
|
||||||
|
## Sources Reviewed
|
||||||
|
|
||||||
|
- Bast et al., "Route Planning in Transportation Networks":
|
||||||
|
https://arxiv.org/abs/1504.05140
|
||||||
|
- Jiang and Liu, "Computing the Fewest-turn Map Directions based on the
|
||||||
|
Connectivity of Natural Roads": https://arxiv.org/abs/1003.3536
|
||||||
|
- Sacharidis and Bouros, "Routing Directions: Keeping it Fast and Simple":
|
||||||
|
https://arxiv.org/abs/1309.4396
|
||||||
|
- Hlineny and Moris, "Generalized Maneuvers in Route Planning":
|
||||||
|
https://arxiv.org/abs/1107.0798
|
||||||
|
- Dibbelt, Strasser, and Wagner, "Fast Exact Shortest Path and Distance Queries
|
||||||
|
on Road Networks with Parametrized Costs": https://arxiv.org/abs/1509.03165
|
||||||
|
- OSRM profile docs:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/docs/profiles.md
|
||||||
|
- OSRM car profile:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/profiles/car.lua
|
||||||
|
- GraphHopper profile docs:
|
||||||
|
https://github.com/graphhopper/graphhopper/blob/master/docs/core/profiles.md
|
||||||
|
- Valhalla turn-by-turn API costing docs:
|
||||||
|
https://valhalla.github.io/valhalla/api/turn-by-turn/api-reference/
|
||||||
|
- Valhalla auto costing implementation:
|
||||||
|
https://github.com/valhalla/valhalla/blob/master/src/sif/autocost.cc
|
||||||
|
- RoutingKit README:
|
||||||
|
https://github.com/RoutingKit/RoutingKit
|
||||||
|
- OSRM license:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/LICENSE.TXT
|
||||||
|
- Valhalla license:
|
||||||
|
https://github.com/valhalla/valhalla/blob/master/COPYING
|
||||||
|
- GraphHopper license:
|
||||||
|
https://github.com/graphhopper/graphhopper/blob/master/LICENSE.txt
|
||||||
|
|
||||||
|
## High-Level Findings
|
||||||
|
|
||||||
|
### There Is No Single "Good GPS" Objective
|
||||||
|
|
||||||
|
The route-planning survey by Bast et al. frames road routing as shortest-path
|
||||||
|
search over nonnegative edge weights, then shows that most practical complexity
|
||||||
|
comes from speed, preprocessing, traffic, and multiple criteria. It explicitly
|
||||||
|
notes there is no single best route-planning method because systems are judged
|
||||||
|
by different tradeoffs: query time, preprocessing effort, space, robustness to
|
||||||
|
changing inputs, and model quality.
|
||||||
|
|
||||||
|
For our mod, that means "shortest distance" and "prefer highways" are both too
|
||||||
|
thin. A better route is the minimum of a cost function we choose. The game
|
||||||
|
already appears to run an A*/Dijkstra-style solver with a geometric heuristic
|
||||||
|
and nonnegative edge costs. Our task is not to replace that algorithm; it is to
|
||||||
|
feed it a better cost surface.
|
||||||
|
|
||||||
|
### Production Engines Separate Edge Cost From Transition Cost
|
||||||
|
|
||||||
|
OSRM profiles define way speed/rate/weight separately from turn processing.
|
||||||
|
The docs say speed should estimate actual travel time, while `rate` or `weight`
|
||||||
|
should encode preference; changing speed to express preference skews duration
|
||||||
|
estimates. OSRM also has a `process_turn` stage that can assign turn penalties
|
||||||
|
by angle, traffic signals, obstacles, U-turns, road classes, and intersection
|
||||||
|
context.
|
||||||
|
|
||||||
|
Valhalla does the same separation. Its auto costing computes edge cost from
|
||||||
|
time, distance preference, density, surface, tolls, alley/service/track factors,
|
||||||
|
and highway preference. Transition cost then adds turn/intersection behavior:
|
||||||
|
OSRM-style turn duration, stop impact, turn type, ramp transition cost,
|
||||||
|
roundabout cost, and U-turn penalties. This is exactly the split we should
|
||||||
|
mirror: road class is only one part of the edge cost; turn and transition costs
|
||||||
|
are a separate part of the route's feel.
|
||||||
|
|
||||||
|
GraphHopper's profile model reinforces this. It exposes road prioritization,
|
||||||
|
turn costs, speed, priority, and `distance_influence` as separate tuning
|
||||||
|
surfaces. Its docs also warn that reusing preprocessed heuristic data can
|
||||||
|
require new weights to be greater than or equal to base weights to preserve
|
||||||
|
correctness. That maps to our A* concern: negative bonuses and broad discounts
|
||||||
|
can make a geometric heuristic less trustworthy. Nonnegative additive penalties
|
||||||
|
are safer than "make good edges cheaper" as a first serious patch.
|
||||||
|
|
||||||
|
### Human-Friendly Routes Minimize Turns And Decision Points
|
||||||
|
|
||||||
|
Jiang and Liu's fewest-turn paper is directly relevant even though Cyberpunk is
|
||||||
|
not normal driving. The paper argues that people often choose routes by road
|
||||||
|
continuity rather than segment-by-segment geometric distance. It highlights
|
||||||
|
fewer turns as lower cognitive burden and explicitly connects fewer turns to
|
||||||
|
fewer slow-down/speed-up events.
|
||||||
|
|
||||||
|
The important concept is "natural roads": sequences of segments joined by good
|
||||||
|
continuity. A curve along a ring road is not necessarily a "turn" in the human
|
||||||
|
navigation sense; changing from one road/corridor to another is the turn. The
|
||||||
|
paper used a 45-degree deflection threshold when generating natural roads, but
|
||||||
|
the exact threshold is less important than the idea: penalize route changes and
|
||||||
|
poor continuity, not curvature by itself.
|
||||||
|
|
||||||
|
Sacharidis and Bouros extend this into a useful tradeoff model. They define
|
||||||
|
route length and route complexity separately, with complexity as turn/road-change
|
||||||
|
cost. They then discuss near-fastest routes that are as simple as possible and
|
||||||
|
near-simplest routes that are as fast as possible. This is a good conceptual
|
||||||
|
target for us: do not minimize turns at all costs, and do not minimize distance
|
||||||
|
at all costs. Prefer a near-fast route that is much simpler and smoother.
|
||||||
|
|
||||||
|
### Maneuvers Are State-Dependent
|
||||||
|
|
||||||
|
Hlineny and Moris model maneuvers such as turn prohibitions, traffic light
|
||||||
|
delays, roundabouts, and multi-edge restrictions. Their important point for us
|
||||||
|
is that a maneuver depends on how a vertex was reached, not only the current
|
||||||
|
vertex. A plain Dijkstra state of "best cost to node" is insufficient when
|
||||||
|
cost depends on a sequence of prior edges. Their M-Dijkstra expands state to
|
||||||
|
vertex-plus-context.
|
||||||
|
|
||||||
|
We probably should not implement a full context-expanded solver inside a game
|
||||||
|
binary patch. But the paper explains why our next hook needs predecessor or
|
||||||
|
incoming-direction information. A turn penalty computed only from the current
|
||||||
|
node flags is inadequate. The local RE already found the game keeps predecessor
|
||||||
|
state at solver-state `+0x1e`, and the relax call receives current state,
|
||||||
|
neighbor state, and candidate state. That is enough for a practical one-step
|
||||||
|
turn/corridor approximation without redesigning the whole solver.
|
||||||
|
|
||||||
|
### Speedups Are Mostly Not The Problem Here
|
||||||
|
|
||||||
|
Modern routing engines use A*, bidirectional search, contraction hierarchies,
|
||||||
|
landmarks, arc flags, and related preprocessing to answer large road-network
|
||||||
|
queries quickly. This matters academically, but not as the primary mod target.
|
||||||
|
Night City's graph is small enough that the game already computes paths during
|
||||||
|
play. The player's complaint is not "the route takes too long to compute"; it is
|
||||||
|
"the route is dumb."
|
||||||
|
|
||||||
|
That said, we should respect solver assumptions. The game uses a straight-line
|
||||||
|
heuristic in the full async solver. If we add only nonnegative penalties to `g`
|
||||||
|
and to the candidate `f = g + h`, the heuristic remains conservative relative
|
||||||
|
to the original distance-like base. If we add negative bonuses or deep highway
|
||||||
|
discounts, we may make the heuristic too optimistic or otherwise distort
|
||||||
|
ordering. The proof highway multiplier worked, but the 0.55/0.35 tests already
|
||||||
|
showed how quickly discounts become pathological.
|
||||||
|
|
||||||
|
## Open-Source Routing Engines
|
||||||
|
|
||||||
|
It is viable to use open-source routing software, but there are three different
|
||||||
|
levels of "use":
|
||||||
|
|
||||||
|
- Use an engine's ideas and cost model.
|
||||||
|
- Use an engine offline to preprocess or classify Night City.
|
||||||
|
- Link or run an engine as the actual in-game route planner.
|
||||||
|
|
||||||
|
The first two are practical. The last one is possible, but much more invasive
|
||||||
|
than patching the native solver.
|
||||||
|
|
||||||
|
### Candidate Engines And Libraries
|
||||||
|
|
||||||
|
RoutingKit is the most interesting native-library candidate. It is a C++ route
|
||||||
|
planning library under a BSD-2-Clause license. Its README emphasizes
|
||||||
|
customizable contraction hierarchy support, flexible arc weights, and
|
||||||
|
millisecond-or-better queries on continental-scale data. It exposes direct
|
||||||
|
graph, index, and query APIs. If we wanted a true replacement solver inside a
|
||||||
|
RED4ext DLL, RoutingKit is the most plausible starting point.
|
||||||
|
|
||||||
|
OSRM is a high-performance C++ routing engine and service under a permissive
|
||||||
|
BSD-style license. It has excellent production lessons: profile-based cost
|
||||||
|
modeling, turn processing, road classes, and CH/MLD preprocessing. However, it
|
||||||
|
is built around its own extraction/preprocessing pipeline and OpenStreetMap-like
|
||||||
|
data. Embedding OSRM directly would likely mean generating OSRM-compatible data
|
||||||
|
from Cyberpunk resources, running preprocessing, shipping those artifacts, then
|
||||||
|
calling libosrm or a local service.
|
||||||
|
|
||||||
|
Valhalla is a C++ routing engine under the MIT license. Its costing model is
|
||||||
|
especially useful because auto routing separates edge cost from transition cost,
|
||||||
|
includes highway preference as a mild factor, and explicitly handles ramps,
|
||||||
|
U-turns, stop impact, density, alleys, service roads, surfaces, and closures.
|
||||||
|
Direct embedding has the same issue as OSRM: Valhalla expects its own graph
|
||||||
|
tiles and attribution model.
|
||||||
|
|
||||||
|
GraphHopper is Apache-2.0 and has a strong custom model/profile system, but it
|
||||||
|
is Java. It is useful as a design reference and potentially as an offline
|
||||||
|
analysis tool, but bundling a JVM or running a Java service beside Cyberpunk is
|
||||||
|
not a good first mod architecture.
|
||||||
|
|
||||||
|
Generic graph libraries such as Boost.Graph or LEMON are options if we only
|
||||||
|
need Dijkstra/A* and want to own the data model ourselves. They are lighter than
|
||||||
|
OSRM/Valhalla but do not bring road-routing domain logic; we would still write
|
||||||
|
the road/corridor cost model.
|
||||||
|
|
||||||
|
### Integration Problem
|
||||||
|
|
||||||
|
External engines need a graph they own. Cyberpunk's GPS solver operates on
|
||||||
|
internal route/node records, packed handles, and final route records. Linking an
|
||||||
|
engine does not solve either boundary.
|
||||||
|
|
||||||
|
To replace the solver, we need:
|
||||||
|
|
||||||
|
- Extract or observe the full drivable graph: directed edges, coordinates,
|
||||||
|
flags/classes, turn/intersection topology.
|
||||||
|
- Convert that graph into the engine or custom graph format.
|
||||||
|
- Map live start and target positions to graph nodes.
|
||||||
|
- Compute a route.
|
||||||
|
- Convert the chosen path back into handles/records the game expects, or hook
|
||||||
|
late enough to draw and consume a custom route.
|
||||||
|
- Keep manual GPS, AutoDrive, pedestrian, quest-pin, and custom-pin behavior
|
||||||
|
sane.
|
||||||
|
|
||||||
|
This is a bigger RE surface than modifying native edge relaxation. It may be
|
||||||
|
worth it if the native solver proves too rigid, but it is not the cheapest next
|
||||||
|
step.
|
||||||
|
|
||||||
|
### Practical Ways To Use Engines
|
||||||
|
|
||||||
|
Best near-term:
|
||||||
|
|
||||||
|
- Use Valhalla, OSRM, and GraphHopper as cost-model references.
|
||||||
|
- Implement their proven split inside the native solver hook: edge cost plus
|
||||||
|
transition cost plus mode/user preference.
|
||||||
|
- Use additive nonnegative penalties first.
|
||||||
|
|
||||||
|
Best offline/precompute:
|
||||||
|
|
||||||
|
- Extract VAND/navigation and traffic companion data.
|
||||||
|
- Build a standalone graph in the repo.
|
||||||
|
- Use RoutingKit or a small custom A* to experiment rapidly outside the game.
|
||||||
|
- Generate baked labels: corridor id, natural-road id, intersection complexity,
|
||||||
|
ramp/connector classification, slope/airtime risk, and road-class
|
||||||
|
confidence.
|
||||||
|
- Feed those labels back into the RED4ext patch as compact lookup tables.
|
||||||
|
|
||||||
|
Possible long-term replacement:
|
||||||
|
|
||||||
|
- Use RoutingKit or a custom solver in-game.
|
||||||
|
- Hook full solver output building around `0x818ba8` or later result
|
||||||
|
materialization.
|
||||||
|
- Emit game-native route records from our computed node/handle path.
|
||||||
|
|
||||||
|
This replacement path is feasible only after we can round-trip a native route:
|
||||||
|
decode a vanilla route into graph handles, reproduce it externally, then inject
|
||||||
|
the same route back without changing behavior.
|
||||||
|
|
||||||
|
### Recommendation
|
||||||
|
|
||||||
|
Do not link a full production engine yet. Use RoutingKit or a small custom graph
|
||||||
|
runner offline to prototype and validate the cost function, then patch the
|
||||||
|
native solver relaxation/cost surface. The native patch has hard game
|
||||||
|
integration for free: target selection, start projection, route output,
|
||||||
|
minimap/world-map drawing, and AutoDrive consumers.
|
||||||
|
|
||||||
|
Revisit full engine integration if:
|
||||||
|
|
||||||
|
- Predecessor/current/neighbor geometry is inaccessible.
|
||||||
|
- Native route output cannot express the desired route.
|
||||||
|
- The cost model requires expanded solver state that the game's one-label node
|
||||||
|
state cannot support.
|
||||||
|
|
||||||
|
## Implications For Cyberpunk 2077
|
||||||
|
|
||||||
|
### Manual Player GPS Should Optimize Momentum
|
||||||
|
|
||||||
|
A real GPS assumes legal speed, stop signs, lights, congestion, safety, and
|
||||||
|
human compliance. A Cyberpunk player in a Caliburn does not. The manual-driving
|
||||||
|
cost model should assume:
|
||||||
|
|
||||||
|
- Posted speed is weak evidence. The player can exceed it.
|
||||||
|
- Traffic simulation metadata is useful but secondary. The player often cuts
|
||||||
|
through or around traffic.
|
||||||
|
- Highway classification is useful but not decisive. Short freeway hops can be
|
||||||
|
worse than a straight arterial or side-street corridor.
|
||||||
|
- Route smoothness matters because every hard turn, ramp dive, or intersection
|
||||||
|
chain costs player speed and control.
|
||||||
|
- Roads with good continuity should be preferred even if they are not highways.
|
||||||
|
|
||||||
|
### AutoDrive Should Remain More Traffic-Like
|
||||||
|
|
||||||
|
AutoDrive behaves more like an NPC/legal driver than the player does. It should
|
||||||
|
benefit more from road hierarchy, speed limits, traffic-sim classes, and
|
||||||
|
avoiding odd local shortcuts. Manual drive and AutoDrive probably should share
|
||||||
|
the same hook site if possible, but they may need different parameter presets.
|
||||||
|
|
||||||
|
The previous warning still stands: do not accidentally apply a manual-only
|
||||||
|
surface to AutoDrive while leaving manual GPS on another surface, or vice versa,
|
||||||
|
unless the mode split is deliberate and documented.
|
||||||
|
|
||||||
|
## Recommended Cost Model
|
||||||
|
|
||||||
|
The next prototype should use additive penalties at the solver edge-relaxation
|
||||||
|
site rather than more highway discounts.
|
||||||
|
|
||||||
|
Base:
|
||||||
|
|
||||||
|
```text
|
||||||
|
candidate_g =
|
||||||
|
vanilla_g
|
||||||
|
+ short_segment_penalty
|
||||||
|
+ turn_or_continuity_penalty
|
||||||
|
+ intersection_complexity_penalty
|
||||||
|
+ ramp_transition_penalty
|
||||||
|
+ grade_or_airtime_risk_penalty
|
||||||
|
+ optional_road_class_penalty
|
||||||
|
```
|
||||||
|
|
||||||
|
Where:
|
||||||
|
|
||||||
|
- `vanilla_g` is the game's current `current.g + delta * nodeMultiplier *
|
||||||
|
directionMultiplier`.
|
||||||
|
- `short_segment_penalty` discourages stair-stepping through many tiny edges.
|
||||||
|
- `turn_or_continuity_penalty` is based on predecessor/current/neighbor angle,
|
||||||
|
not on road class alone.
|
||||||
|
- `intersection_complexity_penalty` approximates stop-start risk and decision
|
||||||
|
points, probably from node degree, flags, or short connector density.
|
||||||
|
- `ramp_transition_penalty` applies when moving highway <-> non-highway through
|
||||||
|
a short/angled connector.
|
||||||
|
- `grade_or_airtime_risk_penalty` applies when vertical delta or local shape
|
||||||
|
indicates a steep launch/drop. This is lower priority until we prove the
|
||||||
|
height fields are stable.
|
||||||
|
- `optional_road_class_penalty` can still mildly prefer highways/arterials, but
|
||||||
|
should be subordinate to continuity.
|
||||||
|
|
||||||
|
Avoid negative "bonuses" in the first real version. If a road is desirable, make
|
||||||
|
its alternatives pay an added cost. This preserves a safer A*/Dijkstra-style
|
||||||
|
cost surface and avoids the pathological over-attraction seen with highway
|
||||||
|
discounts.
|
||||||
|
|
||||||
|
## Candidate Patch Sites
|
||||||
|
|
||||||
|
The proven but blunt hook:
|
||||||
|
|
||||||
|
- `0x40bb98`: road-tail multiplier block in `0x40bb40`.
|
||||||
|
- It sees `solver` and `node` and can inspect flags such as `Highway`.
|
||||||
|
- It cannot see predecessor/current/neighbor geometry, so it cannot distinguish
|
||||||
|
a good corridor from a bad ramp hairpin.
|
||||||
|
|
||||||
|
The better next hook:
|
||||||
|
|
||||||
|
- `0x40b304` and `0x40b540`: neighbor expansion helpers.
|
||||||
|
- They compute vanilla tentative `g`, straight-line heuristic `h`, and then
|
||||||
|
call `0x40ba58`.
|
||||||
|
- At the `0x40ba58` callsites, the live context includes solver pointer,
|
||||||
|
current state, neighbor state, current node, neighbor node, candidate state,
|
||||||
|
route mode, progress/delta, and enough vector data for one-step geometry.
|
||||||
|
|
||||||
|
The likely patch shape:
|
||||||
|
|
||||||
|
- Inline patch at the relax path, not a C detour on a tiny helper.
|
||||||
|
- Adjust candidate `g` and candidate `f` by the same nonnegative penalty before
|
||||||
|
vanilla `0x40ba58` compares against `neighbor_state+0x14` and writes
|
||||||
|
`neighbor_state+0x10`.
|
||||||
|
- Keep the first build low-noise. Logging every edge expansion is pathological;
|
||||||
|
route-window sampling or aggregate counters are enough.
|
||||||
|
|
||||||
|
## First Prototype Parameters
|
||||||
|
|
||||||
|
Start conservative. The goal is to prove the model changes routes in the right
|
||||||
|
direction without causing highway hairpins or search blowups.
|
||||||
|
|
||||||
|
Suggested first-pass terms:
|
||||||
|
|
||||||
|
- Short segment churn:
|
||||||
|
- If edge distance/progress delta is under roughly 25-40 meters, add a small
|
||||||
|
fixed penalty or a penalty proportional to the missing length.
|
||||||
|
- Turn continuity:
|
||||||
|
- If predecessor position is available, compute normalized vectors
|
||||||
|
`prev -> current` and `current -> neighbor`.
|
||||||
|
- No penalty for very straight movement.
|
||||||
|
- Mild penalty for shallow deflection.
|
||||||
|
- Stronger penalty for 60-120 degree turns.
|
||||||
|
- Very strong penalty for U-turn-like reversals unless near origin/destination.
|
||||||
|
- Corridor continuation:
|
||||||
|
- Treat same-road or good-continuity transitions as neutral, not discounted.
|
||||||
|
- A curved ring/highway should stay cheap if it is continuous.
|
||||||
|
- Ramp churn:
|
||||||
|
- Penalize highway/non-highway transitions when the connector is short and the
|
||||||
|
turn angle is high.
|
||||||
|
- Do not penalize a long smooth ramp the same way.
|
||||||
|
- Intersection complexity:
|
||||||
|
- Penalize nodes with many outgoing options or multiple short connectors if
|
||||||
|
the relevant fields can be identified.
|
||||||
|
- Slope/airtime:
|
||||||
|
- Start as logging-only unless height deltas clearly correlate with known bad
|
||||||
|
places. Add as a later penalty.
|
||||||
|
|
||||||
|
## Testing Plan
|
||||||
|
|
||||||
|
Keep the route set from previous testing:
|
||||||
|
|
||||||
|
- El Coyote / city-center custom pin, because it exposed the bad hairpin.
|
||||||
|
- Side job, Sinnerman, and Claire from the fixed car save.
|
||||||
|
- Violence / No-Tell Motel cross-city routes.
|
||||||
|
- The Gig / Cassius Rider long Watson route.
|
||||||
|
- Aldecaldo / Badlands routes.
|
||||||
|
- Cyberpsycho sighting on the unfinished highway.
|
||||||
|
|
||||||
|
Add tests targeted at the new model:
|
||||||
|
|
||||||
|
- A straight long side-street corridor in Heywood vs a short freeway hop.
|
||||||
|
- A route with several 90-degree stair-step alternatives.
|
||||||
|
- A known suspended-highway offramp or hilly road that causes airtime at speed.
|
||||||
|
- AutoDrive on the same destination, to check whether its behavior remains sane.
|
||||||
|
|
||||||
|
## Practical Next Step
|
||||||
|
|
||||||
|
The static pass around `0x40b304`, `0x40b540`, and `0x40ba58` is complete
|
||||||
|
enough for the first prototype:
|
||||||
|
|
||||||
|
- `0x40ba58` has four direct callers: `0x40b175`, `0x40b4ac`, `0x40b6d5`,
|
||||||
|
and `0x40bca7`.
|
||||||
|
- The ordinary adjacency walkers are the two clean first patch sites:
|
||||||
|
`0x40b4ac` from `0x40b304`, and `0x40b6d5` from `0x40b540`.
|
||||||
|
- At both ordinary sites, the live context contains solver, current state,
|
||||||
|
neighbor state, current node, neighbor node, current progress, neighbor
|
||||||
|
progress, vanilla `g`, and vanilla `f`.
|
||||||
|
- A disabled-by-default RED4ext prototype now patches the two ordinary sites by
|
||||||
|
adding a fixed nonnegative per-edge penalty before calling vanilla
|
||||||
|
`0x40ba58`.
|
||||||
|
|
||||||
|
Remaining static work before the full momentum model:
|
||||||
|
|
||||||
|
- Confirm candidate vector layout at `0x40b8f0`/state allocation.
|
||||||
|
- Confirm route-mode values at `solver+0xc4` for manual driving vs AutoDrive.
|
||||||
|
- Identify a cheap way to detect road-class transition from current/neighbor
|
||||||
|
node flags.
|
||||||
|
- Decode predecessor geometry from `state+0x1e` well enough to compute
|
||||||
|
predecessor/current/neighbor turn angle.
|
||||||
|
- Decide whether the later turn/ramp model should also patch the special/helper
|
||||||
|
relax paths (`0x40b175`, `0x40bca7`) or keep them vanilla.
|
||||||
|
|
||||||
|
Next implementation step is to enable and test the smallest additive prototype
|
||||||
|
with route-result comparisons. If the fixed per-edge penalty moves paths in the
|
||||||
|
right direction and remains stable, extend it into a live-tunable cost file and
|
||||||
|
then add turn/continuity penalties. Keep highway multiplier support available as
|
||||||
|
a diagnostic knob, but do not use it as the primary default behavior.
|
||||||
@@ -66,12 +66,22 @@ Current behavior:
|
|||||||
|
|
||||||
Active build note:
|
Active build note:
|
||||||
|
|
||||||
- The currently installed build is disabled on disk:
|
- The currently installed build is active as
|
||||||
`EdgeWeightGPS.dll.disabled`. There is no active `EdgeWeightGPS.dll` in the
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`.
|
||||||
game plugin directory.
|
- Source defaults enable the stable inline solver-cost patch at `0x40bb98`
|
||||||
- Source defaults are still read-only for route behavior. They disable provider
|
(`kEnableGpsNodeMultiplierInlinePatch = true`) and keep the old full-function
|
||||||
class multiplier overrides and the spatial edge-cost patch, while keeping GPS
|
`0x40bb40` C++ detour disabled (`kEnableGpsMultiplierHooks = false`).
|
||||||
query lifecycle tracing available for probe builds.
|
- The inline patch preserves vanilla road cost except for highway lanes in the
|
||||||
|
road-tail branch. Highway lanes are multiplied by the live value in
|
||||||
|
`solver_weights.bin`, defaulting to `0.80`.
|
||||||
|
- The patch is intentionally not hard-gated on `solver+0xc4 == 2`; the vanilla
|
||||||
|
branch already limits it to road-style modes `0/2/4`, which keeps manual
|
||||||
|
drive and autodrive-like callers from diverging while leaving pedestrian mode
|
||||||
|
`1` alone.
|
||||||
|
- `solver_weights.bin` lives beside the DLL and is exactly one little-endian
|
||||||
|
float32. The plugin polls it every 500 ms from the Running game-state update.
|
||||||
|
`../tools/write_solver_weights.py` writes the installed file or generates preset
|
||||||
|
binaries under `../presets/solver_weights/`.
|
||||||
- The async route-job hooks are split behind `kEnableGpsRouteJobLifecycleHooks`
|
- The async route-job hooks are split behind `kEnableGpsRouteJobLifecycleHooks`
|
||||||
and are disabled in the active probe; this keeps the log focused on
|
and are disabled in the active probe; this keeps the log focused on
|
||||||
`0x70a42c` submissions, `0x7094b8` result records, and local
|
`0x70a42c` submissions, `0x7094b8` result records, and local
|
||||||
@@ -85,8 +95,8 @@ Active build note:
|
|||||||
`spatial_weights.bin` from the same directory as the DLL. The file is exactly
|
`spatial_weights.bin` from the same directory as the DLL. The file is exactly
|
||||||
five little-endian float32 values in this order:
|
five little-endian float32 values in this order:
|
||||||
`highway`, `road`, `GPSOnly`, `pavement`, `unknown`.
|
`highway`, `road`, `GPSOnly`, `pavement`, `unknown`.
|
||||||
- `tools/write_spatial_weights.py` writes that file directly, or can generate
|
- `../tools/write_spatial_weights.py` writes that file directly, or can generate
|
||||||
named preset files under `work/spatial-weights/` for live copy-over testing.
|
named preset files under `../work/spatial-weights/` for live copy-over testing.
|
||||||
The prepared presets are:
|
The prepared presets are:
|
||||||
`vanilla`, `current`, `highway-free`, `highway-expensive`, and
|
`vanilla`, `current`, `highway-free`, `highway-expensive`, and
|
||||||
`surface-extreme`.
|
`surface-extreme`.
|
||||||
@@ -293,10 +303,10 @@ Route-record/resource correlation:
|
|||||||
|
|
||||||
Latest full-route join:
|
Latest full-route join:
|
||||||
|
|
||||||
- `logs/EdgeWeightGPS_query_route_probe_2308.log` contains nine solved route
|
- `../logs/EdgeWeightGPS_query_route_probe_2308.log` contains nine solved route
|
||||||
results from the 23:08 user test. All 362 emitted route records matched
|
results from the 23:08 user test. All 362 emitted route records matched
|
||||||
`worldTrafficLanePersistent.nodeRefHash` in
|
`worldTrafficLanePersistent.nodeRefHash` in
|
||||||
`work/raw-segment-json/all.traffic_persistent.json`.
|
`../work/raw-segment-json/all.traffic_persistent.json`.
|
||||||
- The log's wall timestamp currently wraps milliseconds without incrementing
|
- The log's wall timestamp currently wraps milliseconds without incrementing
|
||||||
the displayed second. Use the `+Nms` elapsed field when comparing submit and
|
the displayed second. Use the `+Nms` elapsed field when comparing submit and
|
||||||
result times.
|
result times.
|
||||||
@@ -325,7 +335,7 @@ Latest full-route join:
|
|||||||
blobs in compiled navigation streamingsector resources, not directly to
|
blobs in compiled navigation streamingsector resources, not directly to
|
||||||
`all.traffic_persistent`. The traffic lane hash join happens downstream in
|
`all.traffic_persistent`. The traffic lane hash join happens downstream in
|
||||||
the result/materialization path.
|
the result/materialization path.
|
||||||
- `tools/analyze_vand_navigation.py` decodes those `VAND` blobs from extracted
|
- `../tools/analyze_vand_navigation.py` decodes those `VAND` blobs from extracted
|
||||||
streamingsector JSON. In the three extracted samples, all masks were `0x0003`
|
streamingsector JSON. In the three extracted samples, all masks were `0x0003`
|
||||||
and the dominant point classes were `1`, `4`, `5`, and `3`, matching the live
|
and the dominant point classes were `1`, `4`, `5`, and `3`, matching the live
|
||||||
edge-cost trace.
|
edge-cost trace.
|
||||||
@@ -21,7 +21,7 @@ toolbox run --container 2077 bash -lc '$HOME/.dotnet/tools/cp77tools --help'
|
|||||||
## Discover Traffic Resources
|
## Discover Traffic Resources
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
tools/discover_traffic_resources.sh \
|
../tools/discover_traffic_resources.sh \
|
||||||
"/path/to/Cyberpunk 2077/archive/pc/content" \
|
"/path/to/Cyberpunk 2077/archive/pc/content" \
|
||||||
traffic-resources.txt
|
traffic-resources.txt
|
||||||
```
|
```
|
||||||
@@ -33,19 +33,19 @@ archives.
|
|||||||
## Build Patch Archive
|
## Build Patch Archive
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
tools/build_lane_weight_archive.sh \
|
../tools/build_lane_weight_archive.sh \
|
||||||
"/path/to/Cyberpunk 2077" \
|
"/path/to/Cyberpunk 2077" \
|
||||||
"/path/to/Cyberpunk 2077/archive/pc/content" \
|
"/path/to/Cyberpunk 2077/archive/pc/content" \
|
||||||
work/lane-weight-build
|
../work/lane-weight-build
|
||||||
```
|
```
|
||||||
|
|
||||||
The script performs:
|
The script performs:
|
||||||
|
|
||||||
1. `cp77tools extract` for traffic lane resources
|
1. `cp77tools extract` for traffic lane resources
|
||||||
2. `cp77tools convert serialize` to JSON
|
2. `cp77tools convert serialize` to JSON
|
||||||
3. `tools/patch_traffic_lanes.py`
|
3. `../tools/patch_traffic_lanes.py`
|
||||||
4. `cp77tools convert deserialize` back to CR2W
|
4. `cp77tools convert deserialize` back to CR2W
|
||||||
5. `cp77tools pack` into an archive
|
5. `cp77tools pack` into an archive
|
||||||
|
|
||||||
Copy the resulting archive from `work/lane-weight-build/05_packed` into
|
Copy the resulting archive from `../work/lane-weight-build/05_packed` into
|
||||||
`Cyberpunk 2077/archive/pc/mod` for manual testing.
|
`Cyberpunk 2077/archive/pc/mod` for manual testing.
|
||||||
@@ -776,7 +776,7 @@ The 0x14-byte point record has:
|
|||||||
- `+0x13`: packed route point class/flags; low six bits are the class used by
|
- `+0x13`: packed route point class/flags; low six bits are the class used by
|
||||||
`0x44f838`
|
`0x44f838`
|
||||||
|
|
||||||
The helper `tools/analyze_vand_navigation.py` decodes these blobs from
|
The helper `../tools/analyze_vand_navigation.py` decodes these blobs from
|
||||||
streamingsector JSON. In the three extracted navigation samples, all blobs were
|
streamingsector JSON. In the three extracted navigation samples, all blobs were
|
||||||
version 8, all point masks were `0x0003`, and the dominant classes were
|
version 8, all point masks were `0x0003`, and the dominant classes were
|
||||||
`1`, `4`, `5`, and `3`. That matches the runtime edge-cost logs. This explains
|
`1`, `4`, `5`, and `3`. That matches the runtime edge-cost logs. This explains
|
||||||
@@ -863,7 +863,7 @@ calls instead of gating only on that caller.
|
|||||||
|
|
||||||
The spatial edge-cost prototype is now also disproved as the decisive
|
The spatial edge-cost prototype is now also disproved as the decisive
|
||||||
world-map GPS weighting surface. In
|
world-map GPS weighting surface. In
|
||||||
`logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`, the plugin
|
`../logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`, the plugin
|
||||||
first ran with highway-free weights (`H=0.05`, all other spatial classes
|
first ran with highway-free weights (`H=0.05`, all other spatial classes
|
||||||
`19.0`), then hot-reloaded the exact inverse (`H=19.0`, all others `0.05`).
|
`19.0`), then hot-reloaded the exact inverse (`H=19.0`, all others `0.05`).
|
||||||
The four repeated world-map routes after the flip produced final
|
The four repeated world-map routes after the flip produced final
|
||||||
@@ -980,38 +980,68 @@ the original symptom: the solver is weighted enough to avoid obviously invalid
|
|||||||
surfaces, but it has no strong reason to stay on highway corridors for long
|
surfaces, but it has no strong reason to stay on highway corridors for long
|
||||||
vehicle trips.
|
vehicle trips.
|
||||||
|
|
||||||
The current RED4ext prototype therefore hooks `0x40bb40` and only changes
|
The first RED4ext prototype tried to hook `0x40bb40` as a normal C++ detour.
|
||||||
driving-mode calls (`solver/job + 0xc4 == 2`). It reads flags from
|
That found the correct function but crashed during load-time GPS warmup because
|
||||||
`node+0x88`, leaves vanilla results intact for ordinary roads and unknown
|
the optimized caller expects the tiny vanilla helper not to disturb volatile
|
||||||
surfaces, and applies this diagnostic multiplier set:
|
register state used immediately afterward.
|
||||||
|
|
||||||
|
The stable prototype now patches inline at the road-tail block `0x40bb98`
|
||||||
|
instead. Reaching that block already means the vanilla function selected one of
|
||||||
|
the road-style modes `0/2/4`; pedestrian mode `1` uses a different branch. The
|
||||||
|
patch preserves vanilla `node+0x93` behavior, checks `node+0x88 & 0x4000`, and
|
||||||
|
applies an extra multiplier only for highway lanes.
|
||||||
|
|
||||||
|
The proof multiplier was:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Highway 0.35
|
Highway 0.35
|
||||||
GPSOnly 1.10
|
|
||||||
Pavement 1.25
|
|
||||||
Other 1.00
|
|
||||||
```
|
```
|
||||||
|
|
||||||
`0x40bb00` is currently hooked only for signature logging. If the node
|
Live A/B testing confirmed this is the decisive world-map route-cost lever.
|
||||||
multiplier test moves routes but produces weird reverse/turnaround behavior,
|
With `0.35`, routes visibly changed and a custom pin around the city-center
|
||||||
the next step is to tune or gate the auxiliary multiplier as well.
|
roundabout took an obviously bad highway/ramp hairpin. With the inline patch
|
||||||
|
disabled, the same route returned to the straight vanilla path through the
|
||||||
|
roundabout.
|
||||||
|
|
||||||
|
The current installed build uses a default highway multiplier of `0.80` and
|
||||||
|
hot-reloads `solver_weights.bin` from the plugin directory. The file is exactly
|
||||||
|
one little-endian float32. `../tools/write_solver_weights.py` writes the installed
|
||||||
|
file and can generate named presets:
|
||||||
|
|
||||||
|
```text
|
||||||
|
vanilla 1.00
|
||||||
|
mild 0.90
|
||||||
|
default 0.80
|
||||||
|
strong 0.70
|
||||||
|
proof-highway-cheap 0.35
|
||||||
|
highway-expensive 3.00
|
||||||
|
```
|
||||||
|
|
||||||
|
The patch intentionally does not hard-gate on `solver+0xc4 == 2`, because
|
||||||
|
autodrive-like local vehicle navigation may use another road-style mode. Since
|
||||||
|
the patch lives in the vanilla road-tail branch, it applies to road-style modes
|
||||||
|
`0/2/4` and still leaves pedestrian mode `1` alone.
|
||||||
|
|
||||||
|
`0x40bb00` is not patched yet. If tuned highway weights still produce
|
||||||
|
reverse/turnaround artifacts, inspect or patch that auxiliary multiplier so
|
||||||
|
reverse/special progress branches receive a compatible policy.
|
||||||
|
|
||||||
## Future Improvements
|
## Future Improvements
|
||||||
|
|
||||||
Better versions of this mod could:
|
Better versions of this mod could:
|
||||||
|
|
||||||
- tune the `0x40bb40` solver multiplier after live A/B testing confirms visible
|
- tune the `0x40bb98` inline highway multiplier from the current `0.80` default
|
||||||
route changes
|
using live `solver_weights.bin` presets
|
||||||
- inspect and, if needed, patch `0x40bb00` so reverse/special progress branches
|
- inspect and, if needed, patch `0x40bb00` so reverse/special progress branches
|
||||||
receive the same road-class policy as forward expansion
|
receive the same road-class policy as forward expansion
|
||||||
- add a tiny live-tuning file for the solver multipliers, similar to the earlier
|
- extend `solver_weights.bin` beyond one highway float only if GPSOnly/pavement
|
||||||
`spatial_weights.bin`, once the hook is confirmed stable
|
tuning becomes necessary
|
||||||
- replace the crashing `0x8d46cc` detour with a narrower inline patch or a
|
- replace the crashing `0x8d46cc` detour with a narrower inline patch or a
|
||||||
safer caller-side hook
|
safer caller-side hook
|
||||||
- decode enough of the `VAND` graph to join navigation points to traffic lane
|
- decode enough of the `VAND` graph to join navigation points to traffic lane
|
||||||
polygons and highway flags
|
polygons and highway flags
|
||||||
- extract the full Night City navigation streamingsector set into workspace
|
- extract the full Night City navigation streamingsector set into workspace
|
||||||
storage and summarize it with `tools/analyze_vand_navigation.py`
|
storage and summarize it with `../tools/analyze_vand_navigation.py`
|
||||||
- keep the generated spatial grid as a local-search diagnostic, but do not
|
- keep the generated spatial grid as a local-search diagnostic, but do not
|
||||||
treat its multipliers as a proven world-map route weighting knob
|
treat its multipliers as a proven world-map route weighting knob
|
||||||
- add route-mode gating if the spatial edge-cost hook affects pedestrians,
|
- add route-mode gating if the spatial edge-cost hook affects pedestrians,
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
2026-06-20 21:45:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05a0000 sdk=0x7f643b88 runtime=2.3.1
|
||||||
|
2026-06-20 21:45:17.000 +0ms registered Running game-state callbacks
|
||||||
|
2026-06-20 21:45:17.007 +7ms hook attach GPSRouteJobStart 0x818928 target=0x140818928 rva=0x818928 result=ok original=0x1018c0480
|
||||||
|
2026-06-20 21:45:35.547 +18547ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-20 21:45:35.589 +18589ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-20 21:45:35.596 +18596ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-20 21:45:35.602 +18602ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-20 21:45:35.609 +18609ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-20 21:45:35.616 +18616ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-20 21:46:27.606 +70606ms gps-cost-table-patch applied patchCall=0 routeJobStartCall=0 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:46:27.608 +70608ms gps-cost-table-patch restored patchCall=1 routeJobStartCall=0 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:46:54.160 +97160ms gps-cost-table-patch applied patchCall=2 routeJobStartCall=4 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:46:54.162 +97162ms gps-cost-table-patch restored patchCall=3 routeJobStartCall=4 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:46:59.760 +102760ms gps-cost-table-patch applied patchCall=4 routeJobStartCall=5 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:46:59.761 +102761ms gps-cost-table-patch restored patchCall=5 routeJobStartCall=5 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:01.982 +103982ms gps-cost-table-patch applied patchCall=6 routeJobStartCall=6 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:01.984 +103984ms gps-cost-table-patch restored patchCall=7 routeJobStartCall=6 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.118 +106118ms gps-cost-table-patch applied patchCall=8 routeJobStartCall=7 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.121 +106121ms gps-cost-table-patch restored patchCall=9 routeJobStartCall=7 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.132 +106132ms gps-cost-table-patch applied patchCall=10 routeJobStartCall=8 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.135 +106135ms gps-cost-table-patch restored patchCall=11 routeJobStartCall=8 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.146 +106146ms gps-cost-table-patch applied patchCall=12 routeJobStartCall=9 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.149 +106149ms gps-cost-table-patch restored patchCall=13 routeJobStartCall=9 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.161 +106161ms gps-cost-table-patch applied patchCall=14 routeJobStartCall=10 table=0x143154d28 table_rva=0x3154d28 current=[12.00,7.00,2.50,0.00,3.00,2.00,1.25] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:47:03.164 +106164ms gps-cost-table-patch restored patchCall=15 routeJobStartCall=10 table=0x143154d28 table_rva=0x3154d28 current=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] original=[10.00,6.00,2.00,0.00,4.00,2.50,1.50] patched=[12.00,7.00,2.50,0.00,3.00,2.00,1.25]
|
||||||
|
2026-06-20 21:48:04.374 +167374ms GameState Running OnExit app=0x31fb80
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
|
||||||
|
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
|
||||||
|
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
|
||||||
|
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
|
||||||
|
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
|
||||||
|
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
|
||||||
|
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
|
||||||
|
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
|
||||||
|
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
|
||||||
|
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
|
||||||
|
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
|
||||||
|
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
|
||||||
|
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
|
||||||
@@ -0,0 +1,906 @@
|
|||||||
|
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
|
||||||
|
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
|
||||||
|
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
|
||||||
|
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
|
||||||
|
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
|
||||||
|
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
|
||||||
|
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
|
||||||
|
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
|
||||||
|
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
|
||||||
|
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
|
||||||
|
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
|
||||||
|
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
|
||||||
|
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
|
||||||
|
2026-06-27 09:35:22.127 +725127ms hook GPSQuerySubmit 0x70a42c call=15 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:22.133 +725133ms hook GPSQuerySubmit result call=15 queryId=15 manager_nextIdD4=16/0x10
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124845 queryId=15 tracked=1 perQueryCall=4 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:23.178 +725178ms gps-momentum-summary queryId=15 resultFetchCall=5 submitCall=15 submitRetRva=0x8d20d4 callsA=14348 callsB=15057 callsTotal=29405 fixedPenalty=80 penaltyTotal=2.3524e+06 globalCallsA=3699988 globalCallsB=3941451 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124846 queryId=15 tracked=1 perQueryCall=5 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124847 queryId=15 tracked=1 perQueryCall=6 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit 0x70a42c call=16 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit result call=16 queryId=16 manager_nextIdD4=17/0x11
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125111 queryId=16 tracked=1 perQueryCall=4 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:24.540 +726540ms gps-momentum-summary queryId=16 resultFetchCall=5 submitCall=16 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3712712 globalCallsB=3954874 gpsResultRouteCount=12 gpsResult=0x7993fbb0 gpsResult_routeData=0x196a5cdb0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125112 queryId=16 tracked=1 perQueryCall=5 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125113 queryId=16 tracked=1 perQueryCall=6 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:24.120 +727120ms hook GPSQuerySubmit 0x70a42c call=17 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:24.121 +727121ms hook GPSQuerySubmit result call=17 queryId=17 manager_nextIdD4=18/0x12
|
||||||
|
2026-06-27 09:35:25.174 +727174ms hook GPSQueryResultFetch 0x7094b8 call=125242 queryId=17 tracked=1 perQueryCall=5 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:25.175 +727175ms gps-momentum-summary queryId=17 resultFetchCall=6 submitCall=17 submitRetRva=0x8d20d4 callsA=13285 callsB=13963 callsTotal=27248 fixedPenalty=80 penaltyTotal=2.17984e+06 globalCallsA=3725997 globalCallsB=3968837 gpsResultRouteCount=14 gpsResult=0x31db50 gpsResult_routeData=0x5a3705e80 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125243 queryId=17 tracked=1 perQueryCall=6 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125244 queryId=17 tracked=1 perQueryCall=7 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit 0x70a42c call=18 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit result call=18 queryId=18 manager_nextIdD4=19/0x13
|
||||||
|
2026-06-27 09:35:25.859 +727859ms hook GPSQueryResultFetch 0x7094b8 call=125388 queryId=18 tracked=1 perQueryCall=3 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:25.860 +727860ms gps-momentum-summary queryId=18 resultFetchCall=4 submitCall=18 submitRetRva=0x8d20d4 callsA=3731 callsB=3872 callsTotal=7603 fixedPenalty=80 penaltyTotal=608240 globalCallsA=3729728 globalCallsB=3972709 gpsResultRouteCount=11 gpsResult=0x79d3fbb0 gpsResult_routeData=0x185de6d00 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125389 queryId=18 tracked=1 perQueryCall=4 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb0000000b
|
||||||
|
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125390 queryId=18 tracked=1 perQueryCall=5 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb
|
||||||
|
2026-06-27 09:35:26.267 +728267ms hook GPSQuerySubmit 0x70a42c call=19 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:26.268 +728268ms hook GPSQuerySubmit result call=19 queryId=19 manager_nextIdD4=20/0x14
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125483 queryId=19 tracked=1 perQueryCall=3 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:26.297 +728297ms gps-momentum-summary queryId=19 resultFetchCall=4 submitCall=19 submitRetRva=0x8d20d4 callsA=2922 callsB=3076 callsTotal=5998 fixedPenalty=80 penaltyTotal=479840 globalCallsA=3732650 globalCallsB=3975785 gpsResultRouteCount=10 gpsResult=0x79b3fbb0 gpsResult_routeData=0x18eebaaf0 gpsResult_routeCapacity=10 gpsResult_routeCount=10 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125484 queryId=19 tracked=1 perQueryCall=4 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa0000000a
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125485 queryId=19 tracked=1 perQueryCall=5 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa
|
||||||
|
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit 0x70a42c call=20 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit result call=20 queryId=20 manager_nextIdD4=21/0x15
|
||||||
|
2026-06-27 09:35:26.054 +729054ms hook GPSQueryResultFetch 0x7094b8 call=125642 queryId=20 tracked=1 perQueryCall=3 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:26.054 +729054ms gps-momentum-summary queryId=20 resultFetchCall=4 submitCall=20 submitRetRva=0x8d20d4 callsA=7698 callsB=8002 callsTotal=15700 fixedPenalty=80 penaltyTotal=1.256e+06 globalCallsA=3740348 globalCallsB=3983787 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125643 queryId=20 tracked=1 perQueryCall=4 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125644 queryId=20 tracked=1 perQueryCall=5 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:35:27.937 +729937ms hook GPSQuerySubmit 0x70a42c call=21 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276198404/0x87ac0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:27.938 +729938ms hook GPSQuerySubmit result call=21 queryId=21 manager_nextIdD4=22/0x16
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125824 queryId=21 tracked=1 perQueryCall=3 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:27.969 +729969ms gps-momentum-summary queryId=21 resultFetchCall=4 submitCall=21 submitRetRva=0x8d20d4 callsA=3713 callsB=3882 callsTotal=7595 fixedPenalty=80 penaltyTotal=607600 globalCallsA=3744061 globalCallsB=3987669 gpsResultRouteCount=12 gpsResult=0x795efbb0 gpsResult_routeData=0x1a6925b60 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125825 queryId=21 tracked=1 perQueryCall=4 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125826 queryId=21 tracked=1 perQueryCall=5 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit 0x70a42c call=22 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit result call=22 queryId=22 manager_nextIdD4=23/0x17
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126042 queryId=22 tracked=1 perQueryCall=3 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:28.003 +731003ms gps-momentum-summary queryId=22 resultFetchCall=4 submitCall=22 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3746004 globalCallsB=3989703 gpsResultRouteCount=7 gpsResult=0x31db50 gpsResult_routeData=0x1ac9cc650 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126043 queryId=22 tracked=1 perQueryCall=4 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x700000007
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126044 queryId=22 tracked=1 perQueryCall=5 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x7
|
||||||
|
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit 0x70a42c call=23 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit result call=23 queryId=23 manager_nextIdD4=24/0x18
|
||||||
|
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126449 queryId=23 tracked=1 perQueryCall=4 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:30.908 +732908ms gps-momentum-summary queryId=23 resultFetchCall=5 submitCall=23 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=3746503 globalCallsB=3990225 gpsResultRouteCount=5 gpsResult=0x794efbb0 gpsResult_routeData=0x19681caa0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126450 queryId=23 tracked=1 perQueryCall=5 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x500000005
|
||||||
|
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126451 queryId=23 tracked=1 perQueryCall=6 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126452 queryId=23 tracked=1 perQueryCall=7 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:35:33.123 +736123ms hook GPSQuerySubmit 0x70a42c call=24 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:33.124 +736124ms hook GPSQuerySubmit result call=24 queryId=24 manager_nextIdD4=25/0x19
|
||||||
|
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127149 queryId=24 tracked=1 perQueryCall=3 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:34.156 +736156ms gps-momentum-summary queryId=24 resultFetchCall=4 submitCall=24 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3748446 globalCallsB=3992259 gpsResultRouteCount=7 gpsResult=0x795efbb0 gpsResult_routeData=0x1809282d0 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127150 queryId=24 tracked=1 perQueryCall=4 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x700000007
|
||||||
|
2026-06-27 09:35:34.157 +736157ms hook GPSQueryResultFetch 0x7094b8 call=127151 queryId=24 tracked=1 perQueryCall=5 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x7
|
||||||
|
2026-06-27 09:35:42.127 +745127ms hook GPSQuerySubmit 0x70a42c call=25 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:42.128 +745128ms hook GPSQuerySubmit result call=25 queryId=25 manager_nextIdD4=26/0x1a
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129108 queryId=25 tracked=1 perQueryCall=4 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:43.167 +745167ms gps-momentum-summary queryId=25 resultFetchCall=5 submitCall=25 submitRetRva=0x8d20d4 callsA=10197 callsB=10643 callsTotal=20840 fixedPenalty=80 penaltyTotal=1.6672e+06 globalCallsA=3758643 globalCallsB=4002902 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5bd3033e0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129109 queryId=25 tracked=1 perQueryCall=5 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129110 queryId=25 tracked=1 perQueryCall=6 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit 0x70a42c call=26 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit result call=26 queryId=26 manager_nextIdD4=27/0x1b
|
||||||
|
2026-06-27 09:35:43.609 +745609ms hook GPSQueryResultFetch 0x7094b8 call=129205 queryId=26 tracked=1 perQueryCall=4 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:43.610 +745610ms gps-momentum-summary queryId=26 resultFetchCall=5 submitCall=26 submitRetRva=0x8d20d4 callsA=9943 callsB=10437 callsTotal=20380 fixedPenalty=80 penaltyTotal=1.6304e+06 globalCallsA=3768586 globalCallsB=4013339 gpsResultRouteCount=20 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bdf2c270 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129206 queryId=26 tracked=1 perQueryCall=5 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129207 queryId=26 tracked=1 perQueryCall=6 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:35:44.021 +747021ms hook GPSQuerySubmit 0x70a42c call=27 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:44.022 +747022ms hook GPSQuerySubmit result call=27 queryId=27 manager_nextIdD4=28/0x1c
|
||||||
|
2026-06-27 09:35:44.113 +747113ms hook GPSQueryResultFetch 0x7094b8 call=129515 queryId=27 tracked=1 perQueryCall=8 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:44.114 +747114ms gps-momentum-summary queryId=27 resultFetchCall=9 submitCall=27 submitRetRva=0x8d20d4 callsA=44200 callsB=46781 callsTotal=90981 fixedPenalty=80 penaltyTotal=7.27848e+06 globalCallsA=3812786 globalCallsB=4060120 gpsResultRouteCount=31 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a985f330 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129516 queryId=27 tracked=1 perQueryCall=9 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129517 queryId=27 tracked=1 perQueryCall=10 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:35:45.656 +747656ms hook GPSQuerySubmit 0x70a42c call=28 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:45.657 +747657ms hook GPSQuerySubmit result call=28 queryId=28 manager_nextIdD4=29/0x1d
|
||||||
|
2026-06-27 09:35:45.772 +747772ms hook GPSQueryResultFetch 0x7094b8 call=129649 queryId=28 tracked=1 perQueryCall=10 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:45.773 +747773ms gps-momentum-summary queryId=28 resultFetchCall=11 submitCall=28 submitRetRva=0x8d20d4 callsA=50704 callsB=53499 callsTotal=104203 fixedPenalty=80 penaltyTotal=8.33624e+06 globalCallsA=3863490 globalCallsB=4113619 gpsResultRouteCount=33 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59e138ee0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129650 queryId=28 tracked=1 perQueryCall=11 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129651 queryId=28 tracked=1 perQueryCall=12 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit 0x70a42c call=29 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit result call=29 queryId=29 manager_nextIdD4=30/0x1e
|
||||||
|
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129738 queryId=29 tracked=1 perQueryCall=6 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:46.226 +748226ms gps-momentum-summary queryId=29 resultFetchCall=7 submitCall=29 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=3886344 globalCallsB=4137637 gpsResultRouteCount=27 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd51c020 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129739 queryId=29 tracked=1 perQueryCall=7 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b0000001b
|
||||||
|
2026-06-27 09:35:46.227 +748227ms hook GPSQueryResultFetch 0x7094b8 call=129740 queryId=29 tracked=1 perQueryCall=8 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b
|
||||||
|
2026-06-27 09:35:46.662 +748662ms hook GPSQuerySubmit 0x70a42c call=30 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.663 +748663ms hook GPSQuerySubmit result call=30 queryId=30 manager_nextIdD4=31/0x1f
|
||||||
|
2026-06-27 09:35:46.718 +748718ms hook GPSQueryResultFetch 0x7094b8 call=129831 queryId=30 tracked=1 perQueryCall=5 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:46.719 +748719ms gps-momentum-summary queryId=30 resultFetchCall=6 submitCall=30 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3905083 globalCallsB=4157274 gpsResultRouteCount=23 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd77a1d0 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129832 queryId=30 tracked=1 perQueryCall=6 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129833 queryId=30 tracked=1 perQueryCall=7 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit 0x70a42c call=31 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit result call=31 queryId=31 manager_nextIdD4=32/0x20
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129930 queryId=31 tracked=1 perQueryCall=5 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:47.205 +749205ms gps-momentum-summary queryId=31 resultFetchCall=6 submitCall=31 submitRetRva=0x8d20d4 callsA=17164 callsB=17971 callsTotal=35135 fixedPenalty=80 penaltyTotal=2.8108e+06 globalCallsA=3922247 globalCallsB=4175245 gpsResultRouteCount=24 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ca92f0c0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129931 queryId=31 tracked=1 perQueryCall=6 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1800000018
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129932 queryId=31 tracked=1 perQueryCall=7 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x18
|
||||||
|
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit 0x70a42c call=32 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit result call=32 queryId=32 manager_nextIdD4=33/0x21
|
||||||
|
2026-06-27 09:35:47.016 +750016ms hook GPSQueryResultFetch 0x7094b8 call=130101 queryId=32 tracked=1 perQueryCall=5 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:47.016 +750016ms gps-momentum-summary queryId=32 resultFetchCall=6 submitCall=32 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3940986 globalCallsB=4194882 gpsResultRouteCount=23 gpsResult=0x79d3fbb0 gpsResult_routeData=0x596a4d890 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130102 queryId=32 tracked=1 perQueryCall=6 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130103 queryId=32 tracked=1 perQueryCall=7 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:35:57.400 +759400ms hook GPSQuerySubmit 0x70a42c call=33 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:57.401 +759401ms hook GPSQuerySubmit result call=33 queryId=33 manager_nextIdD4=34/0x22
|
||||||
|
2026-06-27 09:35:57.442 +759442ms hook GPSQueryResultFetch 0x7094b8 call=132081 queryId=33 tracked=1 perQueryCall=4 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:57.442 +759442ms gps-momentum-summary queryId=33 resultFetchCall=5 submitCall=33 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3953710 globalCallsB=4208305 gpsResultRouteCount=12 gpsResult=0x7983fbb0 gpsResult_routeData=0x193232ce0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132082 queryId=33 tracked=1 perQueryCall=5 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132083 queryId=33 tracked=1 perQueryCall=6 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit 0x70a42c call=34 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit result call=34 queryId=34 manager_nextIdD4=35/0x23
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132178 queryId=34 tracked=1 perQueryCall=6 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:57.925 +759925ms gps-momentum-summary queryId=34 resultFetchCall=7 submitCall=34 submitRetRva=0x8d20d4 callsA=24072 callsB=25316 callsTotal=49388 fixedPenalty=80 penaltyTotal=3.95104e+06 globalCallsA=3977782 globalCallsB=4233621 gpsResultRouteCount=19 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5be008000 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132179 queryId=34 tracked=1 perQueryCall=7 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132180 queryId=34 tracked=1 perQueryCall=8 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit 0x70a42c call=35 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit result call=35 queryId=35 manager_nextIdD4=36/0x24
|
||||||
|
2026-06-27 09:35:59.155 +761155ms hook GPSQueryResultFetch 0x7094b8 call=132428 queryId=35 tracked=1 perQueryCall=6 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:59.156 +761156ms gps-momentum-summary queryId=35 resultFetchCall=7 submitCall=35 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=4000636 globalCallsB=4257639 gpsResultRouteCount=27 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5ca177560 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132429 queryId=35 tracked=1 perQueryCall=7 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b0000001b
|
||||||
|
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132430 queryId=35 tracked=1 perQueryCall=8 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b
|
||||||
|
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 09:36:00.664 +762664ms hook GPSQueryResultFetch 0x7094b8 call=132742 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:00.665 +762665ms gps-momentum-summary queryId=36 resultFetchCall=8 submitCall=36 submitRetRva=0x8d20d4 callsA=28252 callsB=29593 callsTotal=57845 fixedPenalty=80 penaltyTotal=4.6276e+06 globalCallsA=4028888 globalCallsB=4287232 gpsResultRouteCount=28 gpsResult=0x7993fbb0 gpsResult_routeData=0x59aad5c20 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132743 queryId=36 tracked=1 perQueryCall=8 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132744 queryId=36 tracked=1 perQueryCall=9 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit 0x70a42c call=37 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit result call=37 queryId=37 manager_nextIdD4=38/0x26
|
||||||
|
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133096 queryId=37 tracked=1 perQueryCall=4 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:02.343 +764343ms gps-momentum-summary queryId=37 resultFetchCall=5 submitCall=37 submitRetRva=0x8d20d4 callsA=15129 callsB=15752 callsTotal=30881 fixedPenalty=80 penaltyTotal=2.47048e+06 globalCallsA=4044017 globalCallsB=4302984 gpsResultRouteCount=21 gpsResult=0x7983fbb0 gpsResult_routeData=0x594917790 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133097 queryId=37 tracked=1 perQueryCall=5 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:02.344 +764344ms hook GPSQueryResultFetch 0x7094b8 call=133098 queryId=37 tracked=1 perQueryCall=6 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit 0x70a42c call=38 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit result call=38 queryId=38 manager_nextIdD4=39/0x27
|
||||||
|
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133352 queryId=38 tracked=1 perQueryCall=6 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:03.560 +765560ms gps-momentum-summary queryId=38 resultFetchCall=7 submitCall=38 submitRetRva=0x8d20d4 callsA=29965 callsB=31504 callsTotal=61469 fixedPenalty=80 penaltyTotal=4.91752e+06 globalCallsA=4073982 globalCallsB=4334488 gpsResultRouteCount=22 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5ae33c650 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133353 queryId=38 tracked=1 perQueryCall=7 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1600000016
|
||||||
|
2026-06-27 09:36:03.561 +765561ms hook GPSQueryResultFetch 0x7094b8 call=133354 queryId=38 tracked=1 perQueryCall=8 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x16
|
||||||
|
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit 0x70a42c call=39 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit result call=39 queryId=39 manager_nextIdD4=40/0x28
|
||||||
|
2026-06-27 09:36:04.366 +766366ms hook GPSQueryResultFetch 0x7094b8 call=133521 queryId=39 tracked=1 perQueryCall=8 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:04.366 +766366ms gps-momentum-summary queryId=39 resultFetchCall=9 submitCall=39 submitRetRva=0x8d20d4 callsA=31930 callsB=33528 callsTotal=65458 fixedPenalty=80 penaltyTotal=5.23664e+06 globalCallsA=4105912 globalCallsB=4368016 gpsResultRouteCount=24 gpsResult=0x795efbb0 gpsResult_routeData=0x595e1bbe0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133522 queryId=39 tracked=1 perQueryCall=9 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1800000018
|
||||||
|
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133523 queryId=39 tracked=1 perQueryCall=10 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x18
|
||||||
|
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit 0x70a42c call=40 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit result call=40 queryId=40 manager_nextIdD4=41/0x29
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133625 queryId=40 tracked=1 perQueryCall=6 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:04.874 +766874ms gps-momentum-summary queryId=40 resultFetchCall=7 submitCall=40 submitRetRva=0x8d20d4 callsA=23316 callsB=24499 callsTotal=47815 fixedPenalty=80 penaltyTotal=3.8252e+06 globalCallsA=4129228 globalCallsB=4392515 gpsResultRouteCount=25 gpsResult=0x795efbb0 gpsResult_routeData=0x5c634ddd0 gpsResult_routeCapacity=25 gpsResult_routeCount=25 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133626 queryId=40 tracked=1 perQueryCall=7 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1900000019
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133627 queryId=40 tracked=1 perQueryCall=8 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x19
|
||||||
|
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit 0x70a42c call=41 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit result call=41 queryId=41 manager_nextIdD4=42/0x2a
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133754 queryId=41 tracked=1 perQueryCall=7 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:05.514 +767514ms gps-momentum-summary queryId=41 resultFetchCall=8 submitCall=41 submitRetRva=0x8d20d4 callsA=28141 callsB=29493 callsTotal=57634 fixedPenalty=80 penaltyTotal=4.61072e+06 globalCallsA=4157369 globalCallsB=4422008 gpsResultRouteCount=29 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c557e970 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133755 queryId=41 tracked=1 perQueryCall=8 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133756 queryId=41 tracked=1 perQueryCall=9 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:36:05.074 +768074ms hook GPSQuerySubmit 0x70a42c call=42 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:05.075 +768075ms hook GPSQuerySubmit result call=42 queryId=42 manager_nextIdD4=43/0x2b
|
||||||
|
2026-06-27 09:36:05.104 +768104ms hook GPSQueryResultFetch 0x7094b8 call=133871 queryId=42 tracked=1 perQueryCall=3 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:05.105 +768105ms gps-momentum-summary queryId=42 resultFetchCall=4 submitCall=42 submitRetRva=0x8d20d4 callsA=8784 callsB=9145 callsTotal=17929 fixedPenalty=80 penaltyTotal=1.43432e+06 globalCallsA=4166153 globalCallsB=4431153 gpsResultRouteCount=17 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa16a190 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133872 queryId=42 tracked=1 perQueryCall=4 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133873 queryId=42 tracked=1 perQueryCall=5 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit 0x70a42c call=43 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit result call=43 queryId=43 manager_nextIdD4=44/0x2c
|
||||||
|
2026-06-27 09:36:06.775 +768775ms hook GPSQueryResultFetch 0x7094b8 call=134008 queryId=43 tracked=1 perQueryCall=3 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:06.776 +768776ms gps-momentum-summary queryId=43 resultFetchCall=4 submitCall=43 submitRetRva=0x8d20d4 callsA=4614 callsB=4803 callsTotal=9417 fixedPenalty=80 penaltyTotal=753360 globalCallsA=4170767 globalCallsB=4435956 gpsResultRouteCount=13 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134009 queryId=43 tracked=1 perQueryCall=4 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134010 queryId=43 tracked=1 perQueryCall=5 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:06.117 +769117ms hook GPSQuerySubmit 0x70a42c call=44 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:06.118 +769118ms hook GPSQuerySubmit result call=44 queryId=44 manager_nextIdD4=45/0x2d
|
||||||
|
2026-06-27 09:36:07.148 +769148ms hook GPSQueryResultFetch 0x7094b8 call=134085 queryId=44 tracked=1 perQueryCall=3 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:07.149 +769149ms gps-momentum-summary queryId=44 resultFetchCall=4 submitCall=44 submitRetRva=0x8d20d4 callsA=5274 callsB=5528 callsTotal=10802 fixedPenalty=80 penaltyTotal=864160 globalCallsA=4176041 globalCallsB=4441484 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcee7f50 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134086 queryId=44 tracked=1 perQueryCall=4 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134087 queryId=44 tracked=1 perQueryCall=5 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134270 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:07.052 +770052ms gps-momentum-summary queryId=45 resultFetchCall=5 submitCall=45 submitRetRva=0x8d20d4 callsA=13737 callsB=14397 callsTotal=28134 fixedPenalty=80 penaltyTotal=2.25072e+06 globalCallsA=4189778 globalCallsB=4455881 gpsResultRouteCount=16 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcb66880 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134271 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1000000010
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134272 queryId=45 tracked=1 perQueryCall=6 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x10
|
||||||
|
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit 0x70a42c call=46 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit result call=46 queryId=46 manager_nextIdD4=47/0x2f
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134457 queryId=46 tracked=1 perQueryCall=4 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:08.960 +770960ms gps-momentum-summary queryId=46 resultFetchCall=5 submitCall=46 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=4190277 globalCallsB=4456403 gpsResultRouteCount=5 gpsResult=0x79e7fbb0 gpsResult_routeData=0x192926ac0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134458 queryId=46 tracked=1 perQueryCall=5 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x500000005
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134459 queryId=46 tracked=1 perQueryCall=6 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134460 queryId=46 tracked=1 perQueryCall=7 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit 0x70a42c call=47 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit result call=47 queryId=47 manager_nextIdD4=48/0x30
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134553 queryId=47 tracked=1 perQueryCall=4 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:09.414 +771414ms gps-momentum-summary queryId=47 resultFetchCall=5 submitCall=47 submitRetRva=0x8d20d4 callsA=5894 callsB=6155 callsTotal=12049 fixedPenalty=80 penaltyTotal=963920 globalCallsA=4196171 globalCallsB=4462558 gpsResultRouteCount=14 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b191ce90 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134554 queryId=47 tracked=1 perQueryCall=5 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134555 queryId=47 tracked=1 perQueryCall=6 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:09.415 +771415ms hook GPSQueryResultFetch 0x7094b8 call=134556 queryId=47 tracked=1 perQueryCall=7 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit 0x70a42c call=48 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit result call=48 queryId=48 manager_nextIdD4=49/0x31
|
||||||
|
2026-06-27 09:36:09.769 +771769ms hook GPSQueryResultFetch 0x7094b8 call=134631 queryId=48 tracked=1 perQueryCall=3 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:09.770 +771770ms gps-momentum-summary queryId=48 resultFetchCall=4 submitCall=48 submitRetRva=0x8d20d4 callsA=4751 callsB=4983 callsTotal=9734 fixedPenalty=80 penaltyTotal=778720 globalCallsA=4200922 globalCallsB=4467541 gpsResultRouteCount=13 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134632 queryId=48 tracked=1 perQueryCall=4 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134633 queryId=48 tracked=1 perQueryCall=5 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit 0x70a42c call=49 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit result call=49 queryId=49 manager_nextIdD4=50/0x32
|
||||||
|
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134806 queryId=49 tracked=1 perQueryCall=3 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:10.624 +772624ms gps-momentum-summary queryId=49 resultFetchCall=4 submitCall=49 submitRetRva=0x8d20d4 callsA=6693 callsB=6937 callsTotal=13630 fixedPenalty=80 penaltyTotal=1.0904e+06 globalCallsA=4207615 globalCallsB=4474478 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134807 queryId=49 tracked=1 perQueryCall=4 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:10.625 +772625ms hook GPSQueryResultFetch 0x7094b8 call=134808 queryId=49 tracked=1 perQueryCall=5 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit 0x70a42c call=50 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit result call=50 queryId=50 manager_nextIdD4=51/0x33
|
||||||
|
2026-06-27 09:36:11.989 +773989ms hook GPSQueryResultFetch 0x7094b8 call=135093 queryId=50 tracked=1 perQueryCall=3 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:11.990 +773990ms gps-momentum-summary queryId=50 resultFetchCall=4 submitCall=50 submitRetRva=0x8d20d4 callsA=7996 callsB=8328 callsTotal=16324 fixedPenalty=80 penaltyTotal=1.30592e+06 globalCallsA=4215611 globalCallsB=4482806 gpsResultRouteCount=15 gpsResult=0x793efbb0 gpsResult_routeData=0x595d8d1c0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135094 queryId=50 tracked=1 perQueryCall=4 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135095 queryId=50 tracked=1 perQueryCall=5 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1059260420/0x3f230804 query_f0c=1050273191/0x3e99e5a7 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135185 queryId=51 tracked=1 perQueryCall=4 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:12.422 +774422ms gps-momentum-summary queryId=51 resultFetchCall=5 submitCall=51 submitRetRva=0x8d20d4 callsA=8063 callsB=8392 callsTotal=16455 fixedPenalty=80 penaltyTotal=1.3164e+06 globalCallsA=4223674 globalCallsB=4491198 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3edcc90 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135186 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135187 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit 0x70a42c call=52 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit result call=52 queryId=52 manager_nextIdD4=53/0x35
|
||||||
|
2026-06-27 09:36:13.193 +775193ms hook GPSQueryResultFetch 0x7094b8 call=135347 queryId=52 tracked=1 perQueryCall=4 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.194 +775194ms gps-momentum-summary queryId=52 resultFetchCall=5 submitCall=52 submitRetRva=0x8d20d4 callsA=13309 callsB=13875 callsTotal=27184 fixedPenalty=80 penaltyTotal=2.17472e+06 globalCallsA=4236983 globalCallsB=4505073 gpsResultRouteCount=21 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c2b0cf50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135348 queryId=52 tracked=1 perQueryCall=5 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135349 queryId=52 tracked=1 perQueryCall=6 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit 0x70a42c call=53 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit result call=53 queryId=53 manager_nextIdD4=54/0x36
|
||||||
|
2026-06-27 09:36:13.456 +775456ms hook GPSQueryResultFetch 0x7094b8 call=135402 queryId=53 tracked=1 perQueryCall=3 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.457 +775457ms gps-momentum-summary queryId=53 resultFetchCall=4 submitCall=53 submitRetRva=0x8d20d4 callsA=9412 callsB=9760 callsTotal=19172 fixedPenalty=80 penaltyTotal=1.53376e+06 globalCallsA=4246395 globalCallsB=4514833 gpsResultRouteCount=18 gpsResult=0x796efbb0 gpsResult_routeData=0x5b7ed2350 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135403 queryId=53 tracked=1 perQueryCall=4 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135404 queryId=53 tracked=1 perQueryCall=5 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit 0x70a42c call=54 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit result call=54 queryId=54 manager_nextIdD4=55/0x37
|
||||||
|
2026-06-27 09:36:13.971 +775971ms hook GPSQueryResultFetch 0x7094b8 call=135513 queryId=54 tracked=1 perQueryCall=4 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.972 +775972ms gps-momentum-summary queryId=54 resultFetchCall=5 submitCall=54 submitRetRva=0x8d20d4 callsA=10685 callsB=11156 callsTotal=21841 fixedPenalty=80 penaltyTotal=1.74728e+06 globalCallsA=4257080 globalCallsB=4525989 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a3e3bdc0 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135514 queryId=54 tracked=1 perQueryCall=5 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135515 queryId=54 tracked=1 perQueryCall=6 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit 0x70a42c call=55 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit result call=55 queryId=55 manager_nextIdD4=56/0x38
|
||||||
|
2026-06-27 09:36:14.538 +776538ms hook GPSQueryResultFetch 0x7094b8 call=135630 queryId=55 tracked=1 perQueryCall=4 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:14.538 +776538ms gps-momentum-summary queryId=55 resultFetchCall=5 submitCall=55 submitRetRva=0x8d20d4 callsA=11831 callsB=12293 callsTotal=24124 fixedPenalty=80 penaltyTotal=1.92992e+06 globalCallsA=4268911 globalCallsB=4538282 gpsResultRouteCount=20 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5974151f0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135631 queryId=55 tracked=1 perQueryCall=5 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135632 queryId=55 tracked=1 perQueryCall=6 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit 0x70a42c call=56 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit result call=56 queryId=56 manager_nextIdD4=57/0x39
|
||||||
|
2026-06-27 09:36:14.869 +776869ms hook GPSQueryResultFetch 0x7094b8 call=135703 queryId=56 tracked=1 perQueryCall=4 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:14.870 +776870ms gps-momentum-summary queryId=56 resultFetchCall=5 submitCall=56 submitRetRva=0x8d20d4 callsA=13900 callsB=14543 callsTotal=28443 fixedPenalty=80 penaltyTotal=2.27544e+06 globalCallsA=4282811 globalCallsB=4552825 gpsResultRouteCount=22 gpsResult=0x31db50 gpsResult_routeData=0x597dc10d0 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135704 queryId=56 tracked=1 perQueryCall=5 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1600000016
|
||||||
|
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135705 queryId=56 tracked=1 perQueryCall=6 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x16
|
||||||
|
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit 0x70a42c call=57 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit result call=57 queryId=57 manager_nextIdD4=58/0x3a
|
||||||
|
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135824 queryId=57 tracked=1 perQueryCall=4 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:15.454 +777454ms gps-momentum-summary queryId=57 resultFetchCall=5 submitCall=57 submitRetRva=0x8d20d4 callsA=13497 callsB=14017 callsTotal=27514 fixedPenalty=80 penaltyTotal=2.20112e+06 globalCallsA=4296308 globalCallsB=4566842 gpsResultRouteCount=17 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a871b490 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135825 queryId=57 tracked=1 perQueryCall=5 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:15.455 +777455ms hook GPSQueryResultFetch 0x7094b8 call=135826 queryId=57 tracked=1 perQueryCall=6 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:16.639 +778639ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:16.640 +778640ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136089 queryId=58 tracked=1 perQueryCall=4 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:16.678 +778678ms gps-momentum-summary queryId=58 resultFetchCall=5 submitCall=58 submitRetRva=0x8d20d4 callsA=17440 callsB=18251 callsTotal=35691 fixedPenalty=80 penaltyTotal=2.85528e+06 globalCallsA=4313748 globalCallsB=4585093 gpsResultRouteCount=26 gpsResult=0x31db50 gpsResult_routeData=0x594b46d20 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136090 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136091 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit 0x70a42c call=59 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit result call=59 queryId=59 manager_nextIdD4=60/0x3c
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136214 queryId=59 tracked=1 perQueryCall=5 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:17.233 +779233ms gps-momentum-summary queryId=59 resultFetchCall=6 submitCall=59 submitRetRva=0x8d20d4 callsA=22976 callsB=24139 callsTotal=47115 fixedPenalty=80 penaltyTotal=3.7692e+06 globalCallsA=4336724 globalCallsB=4609232 gpsResultRouteCount=31 gpsResult=0x31db50 gpsResult_routeData=0x5b18a4340 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136215 queryId=59 tracked=1 perQueryCall=6 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136216 queryId=59 tracked=1 perQueryCall=7 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit 0x70a42c call=60 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit result call=60 queryId=60 manager_nextIdD4=61/0x3d
|
||||||
|
2026-06-27 09:36:17.764 +779764ms hook GPSQueryResultFetch 0x7094b8 call=136333 queryId=60 tracked=1 perQueryCall=5 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:17.765 +779765ms gps-momentum-summary queryId=60 resultFetchCall=6 submitCall=60 submitRetRva=0x8d20d4 callsA=24008 callsB=25228 callsTotal=49236 fixedPenalty=80 penaltyTotal=3.93888e+06 globalCallsA=4360732 globalCallsB=4634460 gpsResultRouteCount=31 gpsResult=0x795efbb0 gpsResult_routeData=0x5cccdc980 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136334 queryId=60 tracked=1 perQueryCall=6 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136335 queryId=60 tracked=1 perQueryCall=7 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit 0x70a42c call=61 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit result call=61 queryId=61 manager_nextIdD4=62/0x3e
|
||||||
|
2026-06-27 09:36:18.215 +780215ms hook GPSQueryResultFetch 0x7094b8 call=136434 queryId=61 tracked=1 perQueryCall=6 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:18.215 +780215ms gps-momentum-summary queryId=61 resultFetchCall=7 submitCall=61 submitRetRva=0x8d20d4 callsA=25501 callsB=26881 callsTotal=52382 fixedPenalty=80 penaltyTotal=4.19056e+06 globalCallsA=4386233 globalCallsB=4661341 gpsResultRouteCount=33 gpsResult=0x796efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136435 queryId=61 tracked=1 perQueryCall=7 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136436 queryId=61 tracked=1 perQueryCall=8 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit 0x70a42c call=62 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit result call=62 queryId=62 manager_nextIdD4=63/0x3f
|
||||||
|
2026-06-27 09:36:18.737 +780737ms hook GPSQueryResultFetch 0x7094b8 call=136549 queryId=62 tracked=1 perQueryCall=7 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:18.738 +780738ms gps-momentum-summary queryId=62 resultFetchCall=8 submitCall=62 submitRetRva=0x8d20d4 callsA=26661 callsB=28128 callsTotal=54789 fixedPenalty=80 penaltyTotal=4.38312e+06 globalCallsA=4412894 globalCallsB=4689469 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136550 queryId=62 tracked=1 perQueryCall=8 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136551 queryId=62 tracked=1 perQueryCall=9 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit 0x70a42c call=63 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit result call=63 queryId=63 manager_nextIdD4=64/0x40
|
||||||
|
2026-06-27 09:36:19.168 +781168ms hook GPSQueryResultFetch 0x7094b8 call=136642 queryId=63 tracked=1 perQueryCall=6 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:19.169 +781169ms gps-momentum-summary queryId=63 resultFetchCall=7 submitCall=63 submitRetRva=0x8d20d4 callsA=30138 callsB=31587 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4443032 globalCallsB=4721056 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5ab288920 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136643 queryId=63 tracked=1 perQueryCall=7 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136644 queryId=63 tracked=1 perQueryCall=8 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit 0x70a42c call=64 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit result call=64 queryId=64 manager_nextIdD4=65/0x41
|
||||||
|
2026-06-27 09:36:19.665 +781665ms hook GPSQueryResultFetch 0x7094b8 call=136753 queryId=64 tracked=1 perQueryCall=6 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:19.665 +781665ms gps-momentum-summary queryId=64 resultFetchCall=7 submitCall=64 submitRetRva=0x8d20d4 callsA=30088 callsB=31637 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4473120 globalCallsB=4752693 gpsResultRouteCount=35 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a90c1400 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136754 queryId=64 tracked=1 perQueryCall=7 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136755 queryId=64 tracked=1 perQueryCall=8 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit 0x70a42c call=65 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit result call=65 queryId=65 manager_nextIdD4=66/0x42
|
||||||
|
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136934 queryId=65 tracked=1 perQueryCall=6 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:20.484 +782484ms gps-momentum-summary queryId=65 resultFetchCall=7 submitCall=65 submitRetRva=0x8d20d4 callsA=26129 callsB=27536 callsTotal=53665 fixedPenalty=80 penaltyTotal=4.2932e+06 globalCallsA=4499249 globalCallsB=4780229 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136935 queryId=65 tracked=1 perQueryCall=7 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:20.485 +782485ms hook GPSQueryResultFetch 0x7094b8 call=136936 queryId=65 tracked=1 perQueryCall=8 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit 0x70a42c call=66 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit result call=66 queryId=66 manager_nextIdD4=67/0x43
|
||||||
|
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137071 queryId=66 tracked=1 perQueryCall=6 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:20.091 +783091ms gps-momentum-summary queryId=66 resultFetchCall=7 submitCall=66 submitRetRva=0x8d20d4 callsA=25647 callsB=27040 callsTotal=52687 fixedPenalty=80 penaltyTotal=4.21496e+06 globalCallsA=4524896 globalCallsB=4807269 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137072 queryId=66 tracked=1 perQueryCall=7 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:20.092 +783092ms hook GPSQueryResultFetch 0x7094b8 call=137073 queryId=66 tracked=1 perQueryCall=8 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit 0x70a42c call=67 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit result call=67 queryId=67 manager_nextIdD4=68/0x44
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137194 queryId=67 tracked=1 perQueryCall=6 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:21.648 +783648ms gps-momentum-summary queryId=67 resultFetchCall=7 submitCall=67 submitRetRva=0x8d20d4 callsA=31448 callsB=32942 callsTotal=64390 fixedPenalty=80 penaltyTotal=5.1512e+06 globalCallsA=4556344 globalCallsB=4840211 gpsResultRouteCount=29 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137195 queryId=67 tracked=1 perQueryCall=7 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137196 queryId=67 tracked=1 perQueryCall=8 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit 0x70a42c call=68 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit result call=68 queryId=68 manager_nextIdD4=69/0x45
|
||||||
|
2026-06-27 09:36:21.079 +784079ms hook GPSQueryResultFetch 0x7094b8 call=137291 queryId=68 tracked=1 perQueryCall=3 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:21.079 +784079ms gps-momentum-summary queryId=68 resultFetchCall=4 submitCall=68 submitRetRva=0x8d20d4 callsA=6959 callsB=7250 callsTotal=14209 fixedPenalty=80 penaltyTotal=1.13672e+06 globalCallsA=4563303 globalCallsB=4847461 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a0edc0f0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137292 queryId=68 tracked=1 perQueryCall=4 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137293 queryId=68 tracked=1 perQueryCall=5 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:22.450 +784450ms hook GPSQuerySubmit 0x70a42c call=69 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:22.451 +784451ms hook GPSQuerySubmit result call=69 queryId=69 manager_nextIdD4=70/0x46
|
||||||
|
2026-06-27 09:36:22.479 +784479ms hook GPSQueryResultFetch 0x7094b8 call=137382 queryId=69 tracked=1 perQueryCall=3 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:22.479 +784479ms gps-momentum-summary queryId=69 resultFetchCall=4 submitCall=69 submitRetRva=0x8d20d4 callsA=7268 callsB=7580 callsTotal=14848 fixedPenalty=80 penaltyTotal=1.18784e+06 globalCallsA=4570571 globalCallsB=4855041 gpsResultRouteCount=15 gpsResult=0x31db50 gpsResult_routeData=0x5aa16c540 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137383 queryId=69 tracked=1 perQueryCall=4 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137384 queryId=69 tracked=1 perQueryCall=5 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit 0x70a42c call=70 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit result call=70 queryId=70 manager_nextIdD4=71/0x47
|
||||||
|
2026-06-27 09:36:22.894 +784894ms hook GPSQueryResultFetch 0x7094b8 call=137477 queryId=70 tracked=1 perQueryCall=3 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:22.895 +784895ms gps-momentum-summary queryId=70 resultFetchCall=4 submitCall=70 submitRetRva=0x8d20d4 callsA=9187 callsB=9551 callsTotal=18738 fixedPenalty=80 penaltyTotal=1.49904e+06 globalCallsA=4579758 globalCallsB=4864592 gpsResultRouteCount=16 gpsResult=0x793efbb0 gpsResult_routeData=0x5968fc3b0 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137478 queryId=70 tracked=1 perQueryCall=4 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1000000010
|
||||||
|
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137479 queryId=70 tracked=1 perQueryCall=5 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x10
|
||||||
|
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit 0x70a42c call=71 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit result call=71 queryId=71 manager_nextIdD4=72/0x48
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137546 queryId=71 tracked=1 perQueryCall=4 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.194 +785194ms gps-momentum-summary queryId=71 resultFetchCall=5 submitCall=71 submitRetRva=0x8d20d4 callsA=15072 callsB=15677 callsTotal=30749 fixedPenalty=80 penaltyTotal=2.45992e+06 globalCallsA=4594830 globalCallsB=4880269 gpsResultRouteCount=17 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3ccfb30 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137547 queryId=71 tracked=1 perQueryCall=5 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137548 queryId=71 tracked=1 perQueryCall=6 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit 0x70a42c call=72 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit result call=72 queryId=72 manager_nextIdD4=73/0x49
|
||||||
|
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137623 queryId=72 tracked=1 perQueryCall=4 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.528 +785528ms gps-momentum-summary queryId=72 resultFetchCall=5 submitCall=72 submitRetRva=0x8d20d4 callsA=14828 callsB=15534 callsTotal=30362 fixedPenalty=80 penaltyTotal=2.42896e+06 globalCallsA=4609658 globalCallsB=4895803 gpsResultRouteCount=23 gpsResult=0x793efbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137624 queryId=72 tracked=1 perQueryCall=5 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:36:23.529 +785529ms hook GPSQueryResultFetch 0x7094b8 call=137625 queryId=72 tracked=1 perQueryCall=6 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:36:23.046 +786046ms hook GPSQuerySubmit 0x70a42c call=73 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.047 +786047ms hook GPSQuerySubmit result call=73 queryId=73 manager_nextIdD4=74/0x4a
|
||||||
|
2026-06-27 09:36:23.108 +786108ms hook GPSQueryResultFetch 0x7094b8 call=137752 queryId=73 tracked=1 perQueryCall=6 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.108 +786108ms gps-momentum-summary queryId=73 resultFetchCall=7 submitCall=73 submitRetRva=0x8d20d4 callsA=26099 callsB=27478 callsTotal=53577 fixedPenalty=80 penaltyTotal=4.28616e+06 globalCallsA=4635757 globalCallsB=4923281 gpsResultRouteCount=15 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137753 queryId=73 tracked=1 perQueryCall=7 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137754 queryId=73 tracked=1 perQueryCall=8 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:25.550 +787550ms hook GPSQuerySubmit 0x70a42c call=74 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:25.551 +787551ms hook GPSQuerySubmit result call=74 queryId=74 manager_nextIdD4=75/0x4b
|
||||||
|
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138071 queryId=74 tracked=1 perQueryCall=3 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:25.579 +787579ms gps-momentum-summary queryId=74 resultFetchCall=4 submitCall=74 submitRetRva=0x8d20d4 callsA=3601 callsB=3712 callsTotal=7313 fixedPenalty=80 penaltyTotal=585040 globalCallsA=4639358 globalCallsB=4926993 gpsResultRouteCount=11 gpsResult=0x796efbb0 gpsResult_routeData=0x187bf4680 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138072 queryId=74 tracked=1 perQueryCall=4 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb0000000b
|
||||||
|
2026-06-27 09:36:25.580 +787580ms hook GPSQueryResultFetch 0x7094b8 call=138073 queryId=74 tracked=1 perQueryCall=5 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb
|
||||||
|
2026-06-27 09:36:26.166 +788166ms hook GPSQuerySubmit 0x70a42c call=75 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:26.167 +788167ms hook GPSQuerySubmit result call=75 queryId=75 manager_nextIdD4=76/0x4c
|
||||||
|
2026-06-27 09:36:26.205 +788205ms hook GPSQueryResultFetch 0x7094b8 call=138210 queryId=75 tracked=1 perQueryCall=4 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:26.206 +788206ms gps-momentum-summary queryId=75 resultFetchCall=5 submitCall=75 submitRetRva=0x8d20d4 callsA=13756 callsB=14447 callsTotal=28203 fixedPenalty=80 penaltyTotal=2.25624e+06 globalCallsA=4653114 globalCallsB=4941440 gpsResultRouteCount=20 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5bd31f3a0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138211 queryId=75 tracked=1 perQueryCall=5 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138212 queryId=75 tracked=1 perQueryCall=6 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit 0x70a42c call=76 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit result call=76 queryId=76 manager_nextIdD4=77/0x4d
|
||||||
|
2026-06-27 09:36:26.988 +788988ms hook GPSQueryResultFetch 0x7094b8 call=138373 queryId=76 tracked=1 perQueryCall=3 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:26.989 +788989ms gps-momentum-summary queryId=76 resultFetchCall=4 submitCall=76 submitRetRva=0x8d20d4 callsA=8469 callsB=8836 callsTotal=17305 fixedPenalty=80 penaltyTotal=1.3844e+06 globalCallsA=4661583 globalCallsB=4950276 gpsResultRouteCount=15 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a5b42140 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138374 queryId=76 tracked=1 perQueryCall=4 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138375 queryId=76 tracked=1 perQueryCall=5 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit 0x70a42c call=77 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit result call=77 queryId=77 manager_nextIdD4=78/0x4e
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138518 queryId=77 tracked=1 perQueryCall=4 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:28.237 +790237ms gps-momentum-summary queryId=77 resultFetchCall=5 submitCall=77 submitRetRva=0x8d20d4 callsA=15470 callsB=16205 callsTotal=31675 fixedPenalty=80 penaltyTotal=2.534e+06 globalCallsA=4677053 globalCallsB=4966481 gpsResultRouteCount=21 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138519 queryId=77 tracked=1 perQueryCall=5 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138520 queryId=77 tracked=1 perQueryCall=6 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit 0x70a42c call=78 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit result call=78 queryId=78 manager_nextIdD4=79/0x4f
|
||||||
|
2026-06-27 09:36:28.985 +790985ms hook GPSQueryResultFetch 0x7094b8 call=138683 queryId=78 tracked=1 perQueryCall=4 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:28.985 +790985ms gps-momentum-summary queryId=78 resultFetchCall=5 submitCall=78 submitRetRva=0x8d20d4 callsA=12146 callsB=12706 callsTotal=24852 fixedPenalty=80 penaltyTotal=1.98816e+06 globalCallsA=4689199 globalCallsB=4979187 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138684 queryId=78 tracked=1 perQueryCall=5 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138685 queryId=78 tracked=1 perQueryCall=6 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit 0x70a42c call=79 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit result call=79 queryId=79 manager_nextIdD4=80/0x50
|
||||||
|
2026-06-27 09:36:29.703 +791703ms hook GPSQueryResultFetch 0x7094b8 call=138834 queryId=79 tracked=1 perQueryCall=4 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:29.704 +791704ms gps-momentum-summary queryId=79 resultFetchCall=5 submitCall=79 submitRetRva=0x8d20d4 callsA=12393 callsB=12965 callsTotal=25358 fixedPenalty=80 penaltyTotal=2.02864e+06 globalCallsA=4701592 globalCallsB=4992152 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138835 queryId=79 tracked=1 perQueryCall=5 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138836 queryId=79 tracked=1 perQueryCall=6 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit 0x70a42c call=80 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit result call=80 queryId=80 manager_nextIdD4=81/0x51
|
||||||
|
2026-06-27 09:36:29.126 +792126ms hook GPSQueryResultFetch 0x7094b8 call=138925 queryId=80 tracked=1 perQueryCall=3 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:29.127 +792127ms gps-momentum-summary queryId=80 resultFetchCall=4 submitCall=80 submitRetRva=0x8d20d4 callsA=5700 callsB=5908 callsTotal=11608 fixedPenalty=80 penaltyTotal=928640 globalCallsA=4707292 globalCallsB=4998060 gpsResultRouteCount=13 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c1754160 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138926 queryId=80 tracked=1 perQueryCall=4 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138927 queryId=80 tracked=1 perQueryCall=5 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit 0x70a42c call=81 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit result call=81 queryId=81 manager_nextIdD4=82/0x52
|
||||||
|
2026-06-27 09:36:30.560 +792560ms hook GPSQueryResultFetch 0x7094b8 call=139018 queryId=81 tracked=1 perQueryCall=3 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:30.561 +792561ms gps-momentum-summary queryId=81 resultFetchCall=4 submitCall=81 submitRetRva=0x8d20d4 callsA=9347 callsB=9727 callsTotal=19074 fixedPenalty=80 penaltyTotal=1.52592e+06 globalCallsA=4716639 globalCallsB=5007787 gpsResultRouteCount=17 gpsResult=0x794efbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139019 queryId=81 tracked=1 perQueryCall=4 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139020 queryId=81 tracked=1 perQueryCall=5 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit 0x70a42c call=82 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit result call=82 queryId=82 manager_nextIdD4=83/0x53
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139099 queryId=82 tracked=1 perQueryCall=3 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:30.933 +792933ms gps-momentum-summary queryId=82 resultFetchCall=4 submitCall=82 submitRetRva=0x8d20d4 callsA=4498 callsB=4706 callsTotal=9204 fixedPenalty=80 penaltyTotal=736320 globalCallsA=4721137 globalCallsB=5012493 gpsResultRouteCount=13 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c4882660 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139100 queryId=82 tracked=1 perQueryCall=4 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139101 queryId=82 tracked=1 perQueryCall=5 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit 0x70a42c call=83 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit result call=83 queryId=83 manager_nextIdD4=84/0x54
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139372 queryId=83 tracked=1 perQueryCall=3 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.223 +794223ms gps-momentum-summary queryId=83 resultFetchCall=4 submitCall=83 submitRetRva=0x8d20d4 callsA=4642 callsB=4819 callsTotal=9461 fixedPenalty=80 penaltyTotal=756880 globalCallsA=4725779 globalCallsB=5017312 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3bd50b0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139373 queryId=83 tracked=1 perQueryCall=4 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139374 queryId=83 tracked=1 perQueryCall=5 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit 0x70a42c call=84 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit result call=84 queryId=84 manager_nextIdD4=85/0x55
|
||||||
|
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139443 queryId=84 tracked=1 perQueryCall=4 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.551 +794551ms gps-momentum-summary queryId=84 resultFetchCall=5 submitCall=84 submitRetRva=0x8d20d4 callsA=10870 callsB=11417 callsTotal=22287 fixedPenalty=80 penaltyTotal=1.78296e+06 globalCallsA=4736649 globalCallsB=5028729 gpsResultRouteCount=14 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a6c189f0 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139444 queryId=84 tracked=1 perQueryCall=5 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:36:32.552 +794552ms hook GPSQueryResultFetch 0x7094b8 call=139445 queryId=84 tracked=1 perQueryCall=6 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit 0x70a42c call=85 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit result call=85 queryId=85 manager_nextIdD4=86/0x56
|
||||||
|
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139538 queryId=85 tracked=1 perQueryCall=7 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.003 +795003ms gps-momentum-summary queryId=85 resultFetchCall=8 submitCall=85 submitRetRva=0x8d20d4 callsA=36538 callsB=38503 callsTotal=75041 fixedPenalty=80 penaltyTotal=6.00328e+06 globalCallsA=4773187 globalCallsB=5067232 gpsResultRouteCount=31 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b3065b50 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139539 queryId=85 tracked=1 perQueryCall=8 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:32.004 +795004ms hook GPSQueryResultFetch 0x7094b8 call=139540 queryId=85 tracked=1 perQueryCall=9 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit 0x70a42c call=86 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit result call=86 queryId=86 manager_nextIdD4=87/0x57
|
||||||
|
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141145 queryId=86 tracked=1 perQueryCall=8 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:40.776 +802776ms gps-momentum-summary queryId=86 resultFetchCall=9 submitCall=86 submitRetRva=0x8d20d4 callsA=36418 callsB=38286 callsTotal=74704 fixedPenalty=80 penaltyTotal=5.97632e+06 globalCallsA=4809605 globalCallsB=5105518 gpsResultRouteCount=31 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a3f5d390 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141146 queryId=86 tracked=1 perQueryCall=9 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:40.777 +802777ms hook GPSQueryResultFetch 0x7094b8 call=141147 queryId=86 tracked=1 perQueryCall=10 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:41.468 +803468ms hook GPSQuerySubmit 0x70a42c call=87 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:41.469 +803469ms hook GPSQuerySubmit result call=87 queryId=87 manager_nextIdD4=88/0x58
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141312 queryId=87 tracked=1 perQueryCall=8 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:41.553 +803553ms gps-momentum-summary queryId=87 resultFetchCall=9 submitCall=87 submitRetRva=0x8d20d4 callsA=36423 callsB=38263 callsTotal=74686 fixedPenalty=80 penaltyTotal=5.97488e+06 globalCallsA=4846028 globalCallsB=5143781 gpsResultRouteCount=31 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5ba81f5b0 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141313 queryId=87 tracked=1 perQueryCall=9 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141314 queryId=87 tracked=1 perQueryCall=10 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit 0x70a42c call=88 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit result call=88 queryId=88 manager_nextIdD4=89/0x59
|
||||||
|
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141377 queryId=88 tracked=1 perQueryCall=4 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:41.847 +803847ms gps-momentum-summary queryId=88 resultFetchCall=5 submitCall=88 submitRetRva=0x8d20d4 callsA=9952 callsB=10393 callsTotal=20345 fixedPenalty=80 penaltyTotal=1.6276e+06 globalCallsA=4855980 globalCallsB=5154174 gpsResultRouteCount=18 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c445b880 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141378 queryId=88 tracked=1 perQueryCall=5 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:41.848 +803848ms hook GPSQueryResultFetch 0x7094b8 call=141379 queryId=88 tracked=1 perQueryCall=6 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit 0x70a42c call=89 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit result call=89 queryId=89 manager_nextIdD4=90/0x5a
|
||||||
|
2026-06-27 09:36:43.476 +805476ms hook GPSQueryResultFetch 0x7094b8 call=141688 queryId=89 tracked=1 perQueryCall=4 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:43.477 +805477ms gps-momentum-summary queryId=89 resultFetchCall=5 submitCall=89 submitRetRva=0x8d20d4 callsA=11662 callsB=12176 callsTotal=23838 fixedPenalty=80 penaltyTotal=1.90704e+06 globalCallsA=4867642 globalCallsB=5166350 gpsResultRouteCount=19 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5b41fb0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141689 queryId=89 tracked=1 perQueryCall=5 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141690 queryId=89 tracked=1 perQueryCall=6 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit 0x70a42c call=90 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit result call=90 queryId=90 manager_nextIdD4=91/0x5b
|
||||||
|
2026-06-27 09:36:43.821 +805821ms hook GPSQueryResultFetch 0x7094b8 call=141767 queryId=90 tracked=1 perQueryCall=4 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:43.822 +805822ms gps-momentum-summary queryId=90 resultFetchCall=5 submitCall=90 submitRetRva=0x8d20d4 callsA=11631 callsB=12119 callsTotal=23750 fixedPenalty=80 penaltyTotal=1.9e+06 globalCallsA=4879273 globalCallsB=5178469 gpsResultRouteCount=18 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ae26da30 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141768 queryId=90 tracked=1 perQueryCall=5 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141769 queryId=90 tracked=1 perQueryCall=6 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit 0x70a42c call=91 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit result call=91 queryId=91 manager_nextIdD4=92/0x5c
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141918 queryId=91 tracked=1 perQueryCall=4 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:44.799 +806799ms gps-momentum-summary queryId=91 resultFetchCall=5 submitCall=91 submitRetRva=0x8d20d4 callsA=14641 callsB=15349 callsTotal=29990 fixedPenalty=80 penaltyTotal=2.3992e+06 globalCallsA=4893914 globalCallsB=5193818 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5c09c9370 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141919 queryId=91 tracked=1 perQueryCall=5 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141920 queryId=91 tracked=1 perQueryCall=6 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit 0x70a42c call=92 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit result call=92 queryId=92 manager_nextIdD4=93/0x5d
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142395 queryId=92 tracked=1 perQueryCall=5 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:47.411 +809411ms gps-momentum-summary queryId=92 resultFetchCall=6 submitCall=92 submitRetRva=0x8d20d4 callsA=17199 callsB=17953 callsTotal=35152 fixedPenalty=80 penaltyTotal=2.81216e+06 globalCallsA=4911113 globalCallsB=5211771 gpsResultRouteCount=18 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b7ed2050 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142396 queryId=92 tracked=1 perQueryCall=6 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142397 queryId=92 tracked=1 perQueryCall=7 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit 0x70a42c call=93 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit result call=93 queryId=93 manager_nextIdD4=94/0x5e
|
||||||
|
2026-06-27 09:36:51.711 +813711ms hook GPSQueryResultFetch 0x7094b8 call=143014 queryId=93 tracked=1 perQueryCall=8 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:51.711 +813711ms gps-momentum-summary queryId=93 resultFetchCall=9 submitCall=93 submitRetRva=0x8d20d4 callsA=41693 callsB=43935 callsTotal=85628 fixedPenalty=80 penaltyTotal=6.85024e+06 globalCallsA=4952806 globalCallsB=5255706 gpsResultRouteCount=35 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143015 queryId=93 tracked=1 perQueryCall=9 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143016 queryId=93 tracked=1 perQueryCall=10 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit 0x70a42c call=94 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit result call=94 queryId=94 manager_nextIdD4=95/0x5f
|
||||||
|
2026-06-27 09:36:52.091 +815091ms hook GPSQueryResultFetch 0x7094b8 call=143295 queryId=94 tracked=1 perQueryCall=6 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:52.092 +815092ms gps-momentum-summary queryId=94 resultFetchCall=7 submitCall=94 submitRetRva=0x8d20d4 callsA=26199 callsB=27533 callsTotal=53732 fixedPenalty=80 penaltyTotal=4.29856e+06 globalCallsA=4979005 globalCallsB=5283239 gpsResultRouteCount=28 gpsResult=0x796efbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143296 queryId=94 tracked=1 perQueryCall=7 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143297 queryId=94 tracked=1 perQueryCall=8 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit 0x70a42c call=95 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit result call=95 queryId=95 manager_nextIdD4=96/0x60
|
||||||
|
2026-06-27 09:36:53.473 +815473ms hook GPSQueryResultFetch 0x7094b8 call=143374 queryId=95 tracked=1 perQueryCall=7 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:53.474 +815474ms gps-momentum-summary queryId=95 resultFetchCall=8 submitCall=95 submitRetRva=0x8d20d4 callsA=38434 callsB=40520 callsTotal=78954 fixedPenalty=80 penaltyTotal=6.31632e+06 globalCallsA=5017439 globalCallsB=5323759 gpsResultRouteCount=32 gpsResult=0x31db50 gpsResult_routeData=0x5ce6fc650 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143375 queryId=95 tracked=1 perQueryCall=8 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2000000020
|
||||||
|
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143376 queryId=95 tracked=1 perQueryCall=9 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x20
|
||||||
|
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit 0x70a42c call=96 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit result call=96 queryId=96 manager_nextIdD4=97/0x61
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143493 queryId=96 tracked=1 perQueryCall=6 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:53.083 +816083ms gps-momentum-summary queryId=96 resultFetchCall=7 submitCall=96 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5042704 globalCallsB=5350295 gpsResultRouteCount=26 gpsResult=0x796efbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143494 queryId=96 tracked=1 perQueryCall=7 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143495 queryId=96 tracked=1 perQueryCall=8 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit 0x70a42c call=97 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit result call=97 queryId=97 manager_nextIdD4=98/0x62
|
||||||
|
2026-06-27 09:36:54.672 +816672ms hook GPSQueryResultFetch 0x7094b8 call=143614 queryId=97 tracked=1 perQueryCall=6 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:54.673 +816673ms gps-momentum-summary queryId=97 resultFetchCall=7 submitCall=97 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5073584 globalCallsB=5382758 gpsResultRouteCount=28 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5b69dac60 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143615 queryId=97 tracked=1 perQueryCall=7 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143616 queryId=97 tracked=1 perQueryCall=8 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit 0x70a42c call=98 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit result call=98 queryId=98 manager_nextIdD4=99/0x63
|
||||||
|
2026-06-27 09:36:55.442 +817442ms hook GPSQueryResultFetch 0x7094b8 call=143773 queryId=98 tracked=1 perQueryCall=6 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:55.442 +817442ms gps-momentum-summary queryId=98 resultFetchCall=7 submitCall=98 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5098849 globalCallsB=5409294 gpsResultRouteCount=26 gpsResult=0x795efbb0 gpsResult_routeData=0x5ccd75ed0 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143774 queryId=98 tracked=1 perQueryCall=7 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143775 queryId=98 tracked=1 perQueryCall=8 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:56.226 +818226ms hook GPSQuerySubmit 0x70a42c call=99 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:56.227 +818227ms hook GPSQuerySubmit result call=99 queryId=99 manager_nextIdD4=100/0x64
|
||||||
|
2026-06-27 09:36:56.307 +818307ms hook GPSQueryResultFetch 0x7094b8 call=143946 queryId=99 tracked=1 perQueryCall=7 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:56.307 +818307ms gps-momentum-summary queryId=99 resultFetchCall=8 submitCall=99 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5129729 globalCallsB=5441757 gpsResultRouteCount=28 gpsResult=0x793efbb0 gpsResult_routeData=0x5ca901790 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143947 queryId=99 tracked=1 perQueryCall=8 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143948 queryId=99 tracked=1 perQueryCall=9 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit 0x70a42c call=100 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit result call=100 queryId=100 manager_nextIdD4=101/0x65
|
||||||
|
2026-06-27 09:36:57.426 +819426ms hook GPSQueryResultFetch 0x7094b8 call=144171 queryId=100 tracked=1 perQueryCall=8 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:57.427 +819427ms gps-momentum-summary queryId=100 resultFetchCall=9 submitCall=100 submitRetRva=0x8d20d4 callsA=39101 callsB=41128 callsTotal=80229 fixedPenalty=80 penaltyTotal=6.41832e+06 globalCallsA=5168830 globalCallsB=5482885 gpsResultRouteCount=34 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144172 queryId=100 tracked=1 perQueryCall=9 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144173 queryId=100 tracked=1 perQueryCall=10 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit 0x70a42c call=101 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit result call=101 queryId=101 manager_nextIdD4=102/0x66
|
||||||
|
2026-06-27 09:36:58.175 +820175ms hook GPSQueryResultFetch 0x7094b8 call=144305 queryId=101 tracked=1 perQueryCall=8 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.175 +820175ms gps-momentum-summary queryId=101 resultFetchCall=9 submitCall=101 submitRetRva=0x8d20d4 callsA=34992 callsB=36769 callsTotal=71761 fixedPenalty=80 penaltyTotal=5.74088e+06 globalCallsA=5203822 globalCallsB=5519654 gpsResultRouteCount=32 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144306 queryId=101 tracked=1 perQueryCall=9 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2000000020
|
||||||
|
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144307 queryId=101 tracked=1 perQueryCall=10 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x20
|
||||||
|
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit 0x70a42c call=102 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2300839940/0x89240804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit result call=102 queryId=102 manager_nextIdD4=103/0x67
|
||||||
|
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144383 queryId=102 tracked=1 perQueryCall=9 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.614 +820614ms gps-momentum-summary queryId=102 resultFetchCall=10 submitCall=102 submitRetRva=0x8d20d4 callsA=33228 callsB=34950 callsTotal=68178 fixedPenalty=80 penaltyTotal=5.45424e+06 globalCallsA=5237050 globalCallsB=5554604 gpsResultRouteCount=31 gpsResult=0x793efbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144384 queryId=102 tracked=1 perQueryCall=10 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:58.615 +820615ms hook GPSQueryResultFetch 0x7094b8 call=144385 queryId=102 tracked=1 perQueryCall=11 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:58.950 +820950ms hook GPSQuerySubmit 0x70a42c call=103 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:58.951 +820951ms hook GPSQuerySubmit result call=103 queryId=103 manager_nextIdD4=104/0x68
|
||||||
|
2026-06-27 09:36:58.044 +821044ms hook GPSQueryResultFetch 0x7094b8 call=144463 queryId=103 tracked=1 perQueryCall=8 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.044 +821044ms gps-momentum-summary queryId=103 resultFetchCall=9 submitCall=103 submitRetRva=0x8d20d4 callsA=39621 callsB=41790 callsTotal=81411 fixedPenalty=80 penaltyTotal=6.51288e+06 globalCallsA=5276671 globalCallsB=5596394 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144464 queryId=103 tracked=1 perQueryCall=9 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144465 queryId=103 tracked=1 perQueryCall=10 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit 0x70a42c call=104 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit result call=104 queryId=104 manager_nextIdD4=105/0x69
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144609 queryId=104 tracked=1 perQueryCall=11 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:59.859 +821859ms gps-momentum-summary queryId=104 resultFetchCall=12 submitCall=104 submitRetRva=0x8d20d4 callsA=42054 callsB=44392 callsTotal=86446 fixedPenalty=80 penaltyTotal=6.91568e+06 globalCallsA=5318725 globalCallsB=5640786 gpsResultRouteCount=29 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144610 queryId=104 tracked=1 perQueryCall=12 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144611 queryId=104 tracked=1 perQueryCall=13 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit 0x70a42c call=105 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit result call=105 queryId=105 manager_nextIdD4=106/0x6a
|
||||||
|
2026-06-27 09:37:05.845 +827845ms hook GPSQueryResultFetch 0x7094b8 call=145756 queryId=105 tracked=1 perQueryCall=10 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:05.846 +827846ms gps-momentum-summary queryId=105 resultFetchCall=11 submitCall=105 submitRetRva=0x8d20d4 callsA=48522 callsB=51160 callsTotal=99682 fixedPenalty=80 penaltyTotal=7.97456e+06 globalCallsA=5367247 globalCallsB=5691946 gpsResultRouteCount=35 gpsResult=0x31db50 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145757 queryId=105 tracked=1 perQueryCall=11 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145758 queryId=105 tracked=1 perQueryCall=12 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit 0x70a42c call=106 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit result call=106 queryId=106 manager_nextIdD4=107/0x6b
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146195 queryId=106 tracked=1 perQueryCall=9 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:07.101 +830101ms gps-momentum-summary queryId=106 resultFetchCall=10 submitCall=106 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5411424 globalCallsB=5738424 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146196 queryId=106 tracked=1 perQueryCall=10 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146197 queryId=106 tracked=1 perQueryCall=11 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:08.559 +830559ms hook GPSQuerySubmit 0x70a42c call=107 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:08.560 +830560ms hook GPSQuerySubmit result call=107 queryId=107 manager_nextIdD4=108/0x6c
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146308 queryId=107 tracked=1 perQueryCall=12 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:08.701 +830701ms gps-momentum-summary queryId=107 resultFetchCall=13 submitCall=107 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5467641 globalCallsB=5797706 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146309 queryId=107 tracked=1 perQueryCall=13 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146310 queryId=107 tracked=1 perQueryCall=14 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit 0x70a42c call=108 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit result call=108 queryId=108 manager_nextIdD4=109/0x6d
|
||||||
|
2026-06-27 09:37:09.451 +831451ms hook GPSQueryResultFetch 0x7094b8 call=146443 queryId=108 tracked=1 perQueryCall=11 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:09.452 +831452ms gps-momentum-summary queryId=108 resultFetchCall=12 submitCall=108 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5511818 globalCallsB=5844184 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5ad0abaa0 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146444 queryId=108 tracked=1 perQueryCall=12 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146445 queryId=108 tracked=1 perQueryCall=13 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:14.818 +836818ms hook GPSQuerySubmit 0x70a42c call=109 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:14.819 +836819ms hook GPSQuerySubmit result call=109 queryId=109 manager_nextIdD4=110/0x6e
|
||||||
|
2026-06-27 09:37:14.930 +836930ms hook GPSQueryResultFetch 0x7094b8 call=147584 queryId=109 tracked=1 perQueryCall=10 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:14.930 +836930ms gps-momentum-summary queryId=109 resultFetchCall=11 submitCall=109 submitRetRva=0x8d20d4 callsA=46110 callsB=48659 callsTotal=94769 fixedPenalty=80 penaltyTotal=7.58152e+06 globalCallsA=5557928 globalCallsB=5892843 gpsResultRouteCount=40 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5494560 gpsResult_routeCapacity=40 gpsResult_routeCount=40 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147585 queryId=109 tracked=1 perQueryCall=11 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2800000028
|
||||||
|
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147586 queryId=109 tracked=1 perQueryCall=12 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x28
|
||||||
|
2026-06-27 09:37:15.269 +837269ms hook GPSQuerySubmit 0x70a42c call=110 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:15.270 +837270ms hook GPSQuerySubmit result call=110 queryId=110 manager_nextIdD4=111/0x6f
|
||||||
|
2026-06-27 09:37:15.391 +837391ms hook GPSQueryResultFetch 0x7094b8 call=147679 queryId=110 tracked=1 perQueryCall=11 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:15.392 +837392ms gps-momentum-summary queryId=110 resultFetchCall=12 submitCall=110 submitRetRva=0x8d20d4 callsA=51620 callsB=54419 callsTotal=106039 fixedPenalty=80 penaltyTotal=8.48312e+06 globalCallsA=5609548 globalCallsB=5947262 gpsResultRouteCount=43 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147680 queryId=110 tracked=1 perQueryCall=12 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147681 queryId=110 tracked=1 perQueryCall=13 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit 0x70a42c call=111 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit result call=111 queryId=111 manager_nextIdD4=112/0x70
|
||||||
|
2026-06-27 09:37:15.846 +837846ms hook GPSQueryResultFetch 0x7094b8 call=147776 queryId=111 tracked=1 perQueryCall=10 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:15.847 +837847ms gps-momentum-summary queryId=111 resultFetchCall=11 submitCall=111 submitRetRva=0x8d20d4 callsA=51247 callsB=53977 callsTotal=105224 fixedPenalty=80 penaltyTotal=8.41792e+06 globalCallsA=5660795 globalCallsB=6001239 gpsResultRouteCount=43 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147777 queryId=111 tracked=1 perQueryCall=11 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147778 queryId=111 tracked=1 perQueryCall=12 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit 0x70a42c call=112 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit result call=112 queryId=112 manager_nextIdD4=113/0x71
|
||||||
|
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147901 queryId=112 tracked=1 perQueryCall=12 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:16.477 +838477ms gps-momentum-summary queryId=112 resultFetchCall=13 submitCall=112 submitRetRva=0x8d20d4 callsA=52115 callsB=55090 callsTotal=107205 fixedPenalty=80 penaltyTotal=8.5764e+06 globalCallsA=5712910 globalCallsB=6056329 gpsResultRouteCount=43 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147902 queryId=112 tracked=1 perQueryCall=13 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:16.478 +838478ms hook GPSQueryResultFetch 0x7094b8 call=147903 queryId=112 tracked=1 perQueryCall=14 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit 0x70a42c call=113 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit result call=113 queryId=113 manager_nextIdD4=114/0x72
|
||||||
|
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147996 queryId=113 tracked=1 perQueryCall=13 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:16.998 +838998ms gps-momentum-summary queryId=113 resultFetchCall=14 submitCall=113 submitRetRva=0x8d20d4 callsA=57012 callsB=60319 callsTotal=117331 fixedPenalty=80 penaltyTotal=9.38648e+06 globalCallsA=5769922 globalCallsB=6116648 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147997 queryId=113 tracked=1 perQueryCall=14 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:16.999 +838999ms hook GPSQueryResultFetch 0x7094b8 call=147998 queryId=113 tracked=1 perQueryCall=15 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit 0x70a42c call=114 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit result call=114 queryId=114 manager_nextIdD4=115/0x73
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148243 queryId=114 tracked=1 perQueryCall=9 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:18.155 +840155ms gps-momentum-summary queryId=114 resultFetchCall=10 submitCall=114 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5814099 globalCallsB=6163126 gpsResultRouteCount=34 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a433c830 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148244 queryId=114 tracked=1 perQueryCall=10 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148245 queryId=114 tracked=1 perQueryCall=11 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit 0x70a42c call=115 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit result call=115 queryId=115 manager_nextIdD4=116/0x74
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148392 queryId=115 tracked=1 perQueryCall=10 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:18.846 +840846ms gps-momentum-summary queryId=115 resultFetchCall=11 submitCall=115 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5859769 globalCallsB=6211149 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148393 queryId=115 tracked=1 perQueryCall=11 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148394 queryId=115 tracked=1 perQueryCall=12 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:19.305 +841305ms hook GPSQuerySubmit 0x70a42c call=116 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:19.306 +841306ms hook GPSQuerySubmit result call=116 queryId=116 manager_nextIdD4=117/0x75
|
||||||
|
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148513 queryId=116 tracked=1 perQueryCall=12 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:19.451 +841451ms gps-momentum-summary queryId=116 resultFetchCall=13 submitCall=116 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5915986 globalCallsB=6270431 gpsResultRouteCount=44 gpsResult=0x793efbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148514 queryId=116 tracked=1 perQueryCall=13 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:19.452 +841452ms hook GPSQueryResultFetch 0x7094b8 call=148515 queryId=116 tracked=1 perQueryCall=14 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit 0x70a42c call=117 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit result call=117 queryId=117 manager_nextIdD4=118/0x76
|
||||||
|
2026-06-27 09:37:20.115 +843115ms hook GPSQueryResultFetch 0x7094b8 call=148846 queryId=117 tracked=1 perQueryCall=10 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:20.116 +843116ms gps-momentum-summary queryId=117 resultFetchCall=11 submitCall=117 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5961656 globalCallsB=6318454 gpsResultRouteCount=35 gpsResult=0x795efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148847 queryId=117 tracked=1 perQueryCall=11 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148848 queryId=117 tracked=1 perQueryCall=12 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:22.792 +844792ms hook GPSQuerySubmit 0x70a42c call=118 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:22.793 +844793ms hook GPSQuerySubmit result call=118 queryId=118 manager_nextIdD4=119/0x77
|
||||||
|
2026-06-27 09:37:22.898 +844898ms hook GPSQueryResultFetch 0x7094b8 call=149189 queryId=118 tracked=1 perQueryCall=9 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:22.899 +844899ms gps-momentum-summary queryId=118 resultFetchCall=10 submitCall=118 submitRetRva=0x8d20d4 callsA=46889 callsB=49406 callsTotal=96295 fixedPenalty=80 penaltyTotal=7.7036e+06 globalCallsA=6008545 globalCallsB=6367860 gpsResultRouteCount=36 gpsResult=0x793efbb0 gpsResult_routeData=0x5a344e040 gpsResult_routeCapacity=36 gpsResult_routeCount=36 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149190 queryId=118 tracked=1 perQueryCall=10 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2400000024
|
||||||
|
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149191 queryId=118 tracked=1 perQueryCall=11 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x24
|
||||||
|
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit 0x70a42c call=119 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2037254148/0x796e0804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit result call=119 queryId=119 manager_nextIdD4=120/0x78
|
||||||
|
2026-06-27 09:37:23.553 +845553ms hook GPSQueryResultFetch 0x7094b8 call=149311 queryId=119 tracked=1 perQueryCall=11 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:23.554 +845554ms gps-momentum-summary queryId=119 resultFetchCall=12 submitCall=119 submitRetRva=0x8d20d4 callsA=53474 callsB=56500 callsTotal=109974 fixedPenalty=80 penaltyTotal=8.79792e+06 globalCallsA=6062019 globalCallsB=6424360 gpsResultRouteCount=35 gpsResult=0x796efbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149312 queryId=119 tracked=1 perQueryCall=12 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149313 queryId=119 tracked=1 perQueryCall=13 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit 0x70a42c call=120 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit result call=120 queryId=120 manager_nextIdD4=121/0x79
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149633 queryId=120 tracked=1 perQueryCall=11 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:25.230 +847230ms gps-momentum-summary queryId=120 resultFetchCall=12 submitCall=120 submitRetRva=0x8d20d4 callsA=51261 callsB=53921 callsTotal=105182 fixedPenalty=80 penaltyTotal=8.41456e+06 globalCallsA=6113280 globalCallsB=6478281 gpsResultRouteCount=39 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=39 gpsResult_routeCount=39 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149634 queryId=120 tracked=1 perQueryCall=12 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x2700000027
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149635 queryId=120 tracked=1 perQueryCall=13 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x27
|
||||||
|
2026-06-27 09:37:28.494 +850494ms hook GPSQuerySubmit 0x70a42c call=121 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:28.495 +850495ms hook GPSQuerySubmit result call=121 queryId=121 manager_nextIdD4=122/0x7a
|
||||||
|
2026-06-27 09:37:28.692 +850692ms hook GPSQueryResultFetch 0x7094b8 call=150259 queryId=121 tracked=1 perQueryCall=15 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:28.693 +850693ms gps-momentum-summary queryId=121 resultFetchCall=16 submitCall=121 submitRetRva=0x8d20d4 callsA=74269 callsB=78375 callsTotal=152644 fixedPenalty=80 penaltyTotal=1.22115e+07 globalCallsA=6187549 globalCallsB=6556656 gpsResultRouteCount=43 gpsResult=0x796efbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150260 queryId=121 tracked=1 perQueryCall=16 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150261 queryId=121 tracked=1 perQueryCall=17 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit 0x70a42c call=122 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit result call=122 queryId=122 manager_nextIdD4=123/0x7b
|
||||||
|
2026-06-27 09:37:29.744 +851744ms hook GPSQueryResultFetch 0x7094b8 call=150445 queryId=122 tracked=1 perQueryCall=17 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:29.744 +851744ms gps-momentum-summary queryId=122 resultFetchCall=18 submitCall=122 submitRetRva=0x8d20d4 callsA=86743 callsB=91281 callsTotal=178024 fixedPenalty=80 penaltyTotal=1.42419e+07 globalCallsA=6274292 globalCallsB=6647937 gpsResultRouteCount=56 gpsResult=0x794efbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150446 queryId=122 tracked=1 perQueryCall=18 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150447 queryId=122 tracked=1 perQueryCall=19 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit 0x70a42c call=123 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit result call=123 queryId=123 manager_nextIdD4=124/0x7c
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150838 queryId=123 tracked=1 perQueryCall=23 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:31.058 +854058ms gps-momentum-summary queryId=123 resultFetchCall=24 submitCall=123 submitRetRva=0x8d20d4 callsA=107532 callsB=112808 callsTotal=220340 fixedPenalty=80 penaltyTotal=1.76272e+07 globalCallsA=6381824 globalCallsB=6760745 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x595ff6a30 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150839 queryId=123 tracked=1 perQueryCall=24 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150840 queryId=123 tracked=1 perQueryCall=25 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit 0x70a42c call=124 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit result call=124 queryId=124 manager_nextIdD4=125/0x7d
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151013 queryId=124 tracked=1 perQueryCall=19 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:32.072 +855072ms gps-momentum-summary queryId=124 resultFetchCall=20 submitCall=124 submitRetRva=0x8d20d4 callsA=81331 callsB=85498 callsTotal=166829 fixedPenalty=80 penaltyTotal=1.33463e+07 globalCallsA=6463155 globalCallsB=6846243 gpsResultRouteCount=52 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5cdd46d00 gpsResult_routeCapacity=52 gpsResult_routeCount=52 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151014 queryId=124 tracked=1 perQueryCall=20 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3400000034
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151015 queryId=124 tracked=1 perQueryCall=21 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x34
|
||||||
|
2026-06-27 09:37:35.062 +858062ms hook GPSQuerySubmit 0x70a42c call=125 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:35.063 +858063ms hook GPSQuerySubmit result call=125 queryId=125 manager_nextIdD4=126/0x7e
|
||||||
|
2026-06-27 09:37:36.242 +858242ms hook GPSQueryResultFetch 0x7094b8 call=151572 queryId=125 tracked=1 perQueryCall=15 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:36.242 +858242ms gps-momentum-summary queryId=125 resultFetchCall=16 submitCall=125 submitRetRva=0x8d20d4 callsA=78601 callsB=82908 callsTotal=161509 fixedPenalty=80 penaltyTotal=1.29207e+07 globalCallsA=6541756 globalCallsB=6929151 gpsResultRouteCount=50 gpsResult=0x7993fbb0 gpsResult_routeData=0x59bcc2d90 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151573 queryId=125 tracked=1 perQueryCall=16 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3200000032
|
||||||
|
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151574 queryId=125 tracked=1 perQueryCall=17 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x32
|
||||||
|
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit 0x70a42c call=126 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit result call=126 queryId=126 manager_nextIdD4=127/0x7f
|
||||||
|
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152209 queryId=126 tracked=1 perQueryCall=12 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:39.701 +861701ms gps-momentum-summary queryId=126 resultFetchCall=13 submitCall=126 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6609704 globalCallsB=7000803 gpsResultRouteCount=45 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152210 queryId=126 tracked=1 perQueryCall=13 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:39.702 +861702ms hook GPSQueryResultFetch 0x7094b8 call=152211 queryId=126 tracked=1 perQueryCall=14 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:39.082 +862082ms hook GPSQuerySubmit 0x70a42c call=127 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:39.083 +862083ms hook GPSQuerySubmit result call=127 queryId=127 manager_nextIdD4=128/0x80
|
||||||
|
2026-06-27 09:37:40.263 +862263ms hook GPSQueryResultFetch 0x7094b8 call=152316 queryId=127 tracked=1 perQueryCall=15 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:40.263 +862263ms gps-momentum-summary queryId=127 resultFetchCall=16 submitCall=127 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6685805 globalCallsB=7080894 gpsResultRouteCount=49 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152317 queryId=127 tracked=1 perQueryCall=16 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152318 queryId=127 tracked=1 perQueryCall=17 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152479 queryId=128 tracked=1 perQueryCall=18 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:41.177 +863177ms gps-momentum-summary queryId=128 resultFetchCall=19 submitCall=128 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6753753 globalCallsB=7152546 gpsResultRouteCount=45 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152480 queryId=128 tracked=1 perQueryCall=19 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152481 queryId=128 tracked=1 perQueryCall=20 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152894 queryId=129 tracked=1 perQueryCall=15 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:43.285 +865285ms gps-momentum-summary queryId=129 resultFetchCall=16 submitCall=129 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6829854 globalCallsB=7232637 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x59708dcb0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152895 queryId=129 tracked=1 perQueryCall=16 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:43.286 +865286ms hook GPSQueryResultFetch 0x7094b8 call=152896 queryId=129 tracked=1 perQueryCall=17 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:37:44.431 +866431ms hook GPSQueryResultFetch 0x7094b8 call=153122 queryId=130 tracked=1 perQueryCall=12 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:44.432 +866432ms gps-momentum-summary queryId=130 resultFetchCall=13 submitCall=130 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=6886895 globalCallsB=7292596 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153123 queryId=130 tracked=1 perQueryCall=13 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153124 queryId=130 tracked=1 perQueryCall=14 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153476 queryId=131 tracked=1 perQueryCall=25 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:46.226 +868226ms gps-momentum-summary queryId=131 resultFetchCall=26 submitCall=131 submitRetRva=0x8d20d4 callsA=114176 callsB=119881 callsTotal=234057 fixedPenalty=80 penaltyTotal=1.87246e+07 globalCallsA=7001071 globalCallsB=7412477 gpsResultRouteCount=53 gpsResult=0x796efbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153477 queryId=131 tracked=1 perQueryCall=26 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:46.227 +868227ms hook GPSQueryResultFetch 0x7094b8 call=153478 queryId=131 tracked=1 perQueryCall=27 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:47.788 +869788ms hook GPSQueryResultFetch 0x7094b8 call=153767 queryId=132 tracked=1 perQueryCall=15 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:47.789 +869789ms gps-momentum-summary queryId=132 resultFetchCall=16 submitCall=132 submitRetRva=0x8d20d4 callsA=79074 callsB=83000 callsTotal=162074 fixedPenalty=80 penaltyTotal=1.29659e+07 globalCallsA=7080145 globalCallsB=7495477 gpsResultRouteCount=53 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153768 queryId=132 tracked=1 perQueryCall=16 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153769 queryId=132 tracked=1 perQueryCall=17 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:48.911 +870911ms hook GPSQueryResultFetch 0x7094b8 call=153955 queryId=133 tracked=1 perQueryCall=18 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:48.912 +870912ms gps-momentum-summary queryId=133 resultFetchCall=19 submitCall=133 submitRetRva=0x8d20d4 callsA=78657 callsB=83056 callsTotal=161713 fixedPenalty=80 penaltyTotal=1.2937e+07 globalCallsA=7158802 globalCallsB=7578533 gpsResultRouteCount=50 gpsResult=0x793efbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153956 queryId=133 tracked=1 perQueryCall=19 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x3200000032
|
||||||
|
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153957 queryId=133 tracked=1 perQueryCall=20 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x32
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154205 queryId=134 tracked=1 perQueryCall=24 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:50.356 +872356ms gps-momentum-summary queryId=134 resultFetchCall=25 submitCall=134 submitRetRva=0x8d20d4 callsA=114064 callsB=119718 callsTotal=233782 fixedPenalty=80 penaltyTotal=1.87026e+07 globalCallsA=7272866 globalCallsB=7698251 gpsResultRouteCount=53 gpsResult=0x31db50 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154206 queryId=134 tracked=1 perQueryCall=25 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154207 queryId=134 tracked=1 perQueryCall=26 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154594 queryId=135 tracked=1 perQueryCall=21 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:52.619 +874619ms gps-momentum-summary queryId=135 resultFetchCall=22 submitCall=135 submitRetRva=0x8d20d4 callsA=86232 callsB=90519 callsTotal=176751 fixedPenalty=80 penaltyTotal=1.41401e+07 globalCallsA=7359098 globalCallsB=7788770 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154595 queryId=135 tracked=1 perQueryCall=22 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154596 queryId=135 tracked=1 perQueryCall=23 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
|
||||||
|
2026-06-27 09:37:58.016 +881016ms hook GPSQueryResultFetch 0x7094b8 call=155730 queryId=136 tracked=1 perQueryCall=21 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:58.017 +881017ms gps-momentum-summary queryId=136 resultFetchCall=22 submitCall=136 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7460653 globalCallsB=7895580 gpsResultRouteCount=49 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a9ef29a0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155731 queryId=136 tracked=1 perQueryCall=22 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155732 queryId=136 tracked=1 perQueryCall=23 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157003 queryId=137 tracked=1 perQueryCall=13 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:07.682 +889682ms gps-momentum-summary queryId=137 resultFetchCall=14 submitCall=137 submitRetRva=0x8d20d4 callsA=71709 callsB=75945 callsTotal=147654 fixedPenalty=80 penaltyTotal=1.18123e+07 globalCallsA=7532362 globalCallsB=7971525 gpsResultRouteCount=48 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157004 queryId=137 tracked=1 perQueryCall=14 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:38:07.683 +889683ms hook GPSQueryResultFetch 0x7094b8 call=157005 queryId=137 tracked=1 perQueryCall=15 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157214 queryId=138 tracked=1 perQueryCall=16 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:08.832 +890832ms gps-momentum-summary queryId=138 resultFetchCall=17 submitCall=138 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7613319 globalCallsB=8056663 gpsResultRouteCount=53 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a300ad90 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157215 queryId=138 tracked=1 perQueryCall=17 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:38:08.833 +890833ms hook GPSQueryResultFetch 0x7094b8 call=157216 queryId=138 tracked=1 perQueryCall=18 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157429 queryId=139 tracked=1 perQueryCall=17 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:09.074 +892074ms gps-momentum-summary queryId=139 resultFetchCall=18 submitCall=139 submitRetRva=0x8d20d4 callsA=81871 callsB=86147 callsTotal=168018 fixedPenalty=80 penaltyTotal=1.34414e+07 globalCallsA=7695190 globalCallsB=8142810 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157430 queryId=139 tracked=1 perQueryCall=18 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
|
||||||
|
2026-06-27 09:38:09.075 +892075ms hook GPSQueryResultFetch 0x7094b8 call=157431 queryId=139 tracked=1 perQueryCall=19 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
|
||||||
|
2026-06-27 09:38:11.305 +893305ms hook GPSQueryResultFetch 0x7094b8 call=157640 queryId=140 tracked=1 perQueryCall=23 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:11.306 +893306ms gps-momentum-summary queryId=140 resultFetchCall=24 submitCall=140 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7796745 globalCallsB=8249620 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157641 queryId=140 tracked=1 perQueryCall=24 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157642 queryId=140 tracked=1 perQueryCall=25 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:39:19.409 +961409ms hook GPSQueryResultFetch 0x7094b8 call=169463 queryId=141 tracked=1 perQueryCall=15 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:19.409 +961409ms gps-momentum-summary queryId=141 resultFetchCall=16 submitCall=141 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7877702 globalCallsB=8334758 gpsResultRouteCount=53 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a30883a0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169464 queryId=141 tracked=1 perQueryCall=16 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169465 queryId=141 tracked=1 perQueryCall=17 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175046 queryId=142 tracked=1 perQueryCall=11 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:51.138 +994138ms gps-momentum-summary queryId=142 resultFetchCall=12 submitCall=142 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=7934743 globalCallsB=8394717 gpsResultRouteCount=45 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c3253ff0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175047 queryId=142 tracked=1 perQueryCall=12 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175048 queryId=142 tracked=1 perQueryCall=13 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:39:55.778 +997778ms hook GPSQueryResultFetch 0x7094b8 call=175832 queryId=143 tracked=1 perQueryCall=17 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:55.778 +997778ms gps-momentum-summary queryId=143 resultFetchCall=18 submitCall=143 submitRetRva=0x8d20d4 callsA=64588 callsB=67941 callsTotal=132529 fixedPenalty=80 penaltyTotal=1.06023e+07 globalCallsA=7999331 globalCallsB=8462658 gpsResultRouteCount=48 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175833 queryId=143 tracked=1 perQueryCall=18 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175834 queryId=143 tracked=1 perQueryCall=19 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:39:56.349 +998349ms hook GPSQueryResultFetch 0x7094b8 call=175939 queryId=144 tracked=1 perQueryCall=13 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:56.349 +998349ms gps-momentum-summary queryId=144 resultFetchCall=14 submitCall=144 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=8075432 globalCallsB=8542749 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175940 queryId=144 tracked=1 perQueryCall=14 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175941 queryId=144 tracked=1 perQueryCall=15 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:39:58.783 +1000783ms hook GPSQueryResultFetch 0x7094b8 call=176418 queryId=145 tracked=1 perQueryCall=12 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:58.783 +1000783ms gps-momentum-summary queryId=145 resultFetchCall=13 submitCall=145 submitRetRva=0x8d20d4 callsA=60857 callsB=64111 callsTotal=124968 fixedPenalty=80 penaltyTotal=9.99744e+06 globalCallsA=8136289 globalCallsB=8606860 gpsResultRouteCount=48 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176419 queryId=145 tracked=1 perQueryCall=13 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176420 queryId=145 tracked=1 perQueryCall=14 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:40:22.522 +1024522ms hook GPSQueryResultFetch 0x7094b8 call=181029 queryId=146 tracked=1 perQueryCall=19 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:22.522 +1024522ms gps-momentum-summary queryId=146 resultFetchCall=20 submitCall=146 submitRetRva=0x8d20d4 callsA=94645 callsB=99283 callsTotal=193928 fixedPenalty=80 penaltyTotal=1.55142e+07 globalCallsA=8230934 globalCallsB=8706143 gpsResultRouteCount=53 gpsResult=0x794efbb0 gpsResult_routeData=0x5b8d26bf0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181030 queryId=146 tracked=1 perQueryCall=20 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181031 queryId=146 tracked=1 perQueryCall=21 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:40:25.583 +1027583ms hook GPSQueryResultFetch 0x7094b8 call=181630 queryId=147 tracked=1 perQueryCall=17 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:25.583 +1027583ms gps-momentum-summary queryId=147 resultFetchCall=18 submitCall=147 submitRetRva=0x8d20d4 callsA=94662 callsB=99361 callsTotal=194023 fixedPenalty=80 penaltyTotal=1.55218e+07 globalCallsA=8325596 globalCallsB=8805504 gpsResultRouteCount=51 gpsResult=0x31db50 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181631 queryId=147 tracked=1 perQueryCall=18 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3300000033
|
||||||
|
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181632 queryId=147 tracked=1 perQueryCall=19 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x33
|
||||||
|
2026-06-27 09:40:26.249 +1028249ms hook GPSQueryResultFetch 0x7094b8 call=181771 queryId=148 tracked=1 perQueryCall=18 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms gps-momentum-summary queryId=148 resultFetchCall=19 submitCall=148 submitRetRva=0x8d20d4 callsA=96443 callsB=101123 callsTotal=197566 fixedPenalty=80 penaltyTotal=1.58053e+07 globalCallsA=8422039 globalCallsB=8906627 gpsResultRouteCount=51 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181772 queryId=148 tracked=1 perQueryCall=19 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3300000033
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181773 queryId=148 tracked=1 perQueryCall=20 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x33
|
||||||
|
2026-06-27 09:40:26.947 +1028947ms hook GPSQueryResultFetch 0x7094b8 call=181918 queryId=149 tracked=1 perQueryCall=19 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:26.947 +1028947ms gps-momentum-summary queryId=149 resultFetchCall=20 submitCall=149 submitRetRva=0x8d20d4 callsA=96421 callsB=101149 callsTotal=197570 fixedPenalty=80 penaltyTotal=1.58056e+07 globalCallsA=8518460 globalCallsB=9007776 gpsResultRouteCount=56 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181919 queryId=149 tracked=1 perQueryCall=20 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181920 queryId=149 tracked=1 perQueryCall=21 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:40:51.330 +1053330ms hook GPSQueryResultFetch 0x7094b8 call=187131 queryId=150 tracked=1 perQueryCall=23 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms gps-momentum-summary queryId=150 resultFetchCall=24 submitCall=150 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=8630353 globalCallsB=9124761 gpsResultRouteCount=59 gpsResult=0x794efbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187132 queryId=150 tracked=1 perQueryCall=24 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187133 queryId=150 tracked=1 perQueryCall=25 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187469 queryId=151 tracked=1 perQueryCall=26 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms gps-momentum-summary queryId=151 resultFetchCall=27 submitCall=151 submitRetRva=0x8d20d4 callsA=139362 callsB=146130 callsTotal=285492 fixedPenalty=80 penaltyTotal=2.28394e+07 globalCallsA=8769715 globalCallsB=9270891 gpsResultRouteCount=68 gpsResult=0x796efbb0 gpsResult_routeData=0x5ac786db0 gpsResult_routeCapacity=68 gpsResult_routeCount=68 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187470 queryId=151 tracked=1 perQueryCall=27 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x4400000044
|
||||||
|
2026-06-27 09:40:54.482 +1056482ms hook GPSQueryResultFetch 0x7094b8 call=187471 queryId=151 tracked=1 perQueryCall=28 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x44
|
||||||
|
2026-06-27 09:40:55.901 +1057901ms hook GPSQueryResultFetch 0x7094b8 call=187734 queryId=152 tracked=1 perQueryCall=30 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms gps-momentum-summary queryId=152 resultFetchCall=31 submitCall=152 submitRetRva=0x8d20d4 callsA=131009 callsB=137351 callsTotal=268360 fixedPenalty=80 penaltyTotal=2.14688e+07 globalCallsA=8900724 globalCallsB=9408242 gpsResultRouteCount=67 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187735 queryId=152 tracked=1 perQueryCall=31 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187736 queryId=152 tracked=1 perQueryCall=32 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:40:56.761 +1058761ms hook GPSQueryResultFetch 0x7094b8 call=187884 queryId=153 tracked=1 perQueryCall=23 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms gps-momentum-summary queryId=153 resultFetchCall=24 submitCall=153 submitRetRva=0x8d20d4 callsA=90608 callsB=95127 callsTotal=185735 fixedPenalty=80 penaltyTotal=1.48588e+07 globalCallsA=8991332 globalCallsB=9503369 gpsResultRouteCount=55 gpsResult=0x796efbb0 gpsResult_routeData=0x5b65c6510 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187885 queryId=153 tracked=1 perQueryCall=24 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187886 queryId=153 tracked=1 perQueryCall=25 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x37
|
||||||
|
2026-06-27 09:40:57.587 +1059587ms hook GPSQueryResultFetch 0x7094b8 call=188032 queryId=154 tracked=1 perQueryCall=22 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms gps-momentum-summary queryId=154 resultFetchCall=23 submitCall=154 submitRetRva=0x8d20d4 callsA=92730 callsB=97388 callsTotal=190118 fixedPenalty=80 penaltyTotal=1.52094e+07 globalCallsA=9084062 globalCallsB=9600757 gpsResultRouteCount=55 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188033 queryId=154 tracked=1 perQueryCall=23 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188034 queryId=154 tracked=1 perQueryCall=24 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x37
|
||||||
|
2026-06-27 09:40:58.638 +1060638ms hook GPSQueryResultFetch 0x7094b8 call=188224 queryId=155 tracked=1 perQueryCall=24 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:58.638 +1060638ms gps-momentum-summary queryId=155 resultFetchCall=25 submitCall=155 submitRetRva=0x8d20d4 callsA=125813 callsB=131448 callsTotal=257261 fixedPenalty=80 penaltyTotal=2.05809e+07 globalCallsA=9209875 globalCallsB=9732205 gpsResultRouteCount=56 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188225 queryId=155 tracked=1 perQueryCall=25 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188226 queryId=155 tracked=1 perQueryCall=26 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188410 queryId=156 tracked=1 perQueryCall=21 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms gps-momentum-summary queryId=156 resultFetchCall=22 submitCall=156 submitRetRva=0x8d20d4 callsA=116627 callsB=122251 callsTotal=238878 fixedPenalty=80 penaltyTotal=1.91102e+07 globalCallsA=9326502 globalCallsB=9854456 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188411 queryId=156 tracked=1 perQueryCall=22 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:40:59.669 +1061669ms hook GPSQueryResultFetch 0x7094b8 call=188412 queryId=156 tracked=1 perQueryCall=23 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188737 queryId=157 tracked=1 perQueryCall=19 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms gps-momentum-summary queryId=157 resultFetchCall=20 submitCall=157 submitRetRva=0x8d20d4 callsA=77630 callsB=81730 callsTotal=159360 fixedPenalty=80 penaltyTotal=1.27488e+07 globalCallsA=9404132 globalCallsB=9936186 gpsResultRouteCount=55 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188738 queryId=157 tracked=1 perQueryCall=20 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:41:01.491 +1063491ms hook GPSQueryResultFetch 0x7094b8 call=188739 queryId=157 tracked=1 perQueryCall=21 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x37
|
||||||
@@ -0,0 +1,762 @@
|
|||||||
|
2026-06-21 03:14:46.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05b0000 sdk=0x7f7f1e78 runtime=2.3.1
|
||||||
|
2026-06-21 03:14:46.000 +0ms registered Running game-state callbacks
|
||||||
|
2026-06-21 03:14:46.007 +7ms hook attach GPSSearch 0x44f054 target=0x14044f054 rva=0x44f054 result=ok original=0x1018c0480
|
||||||
|
2026-06-21 03:14:46.014 +14ms hook attach GPSRouteProducer 0x44cc7c target=0x14044cc7c rva=0x44cc7c result=ok original=0x1018c04e0
|
||||||
|
2026-06-21 03:14:46.021 +21ms hook attach GPSEdgeCost 0x44f838 target=0x14044f838 rva=0x44f838 result=ok original=0x1018c0540
|
||||||
|
2026-06-21 03:14:46.028 +28ms hook attach GPSFilteredProviderFilter 0x44ff68 target=0x14044ff68 rva=0x44ff68 result=ok original=0x1018c05a0
|
||||||
|
2026-06-21 03:14:46.035 +35ms hook attach GPSBaseProviderFilter 0x450b08 target=0x140450b08 rva=0x450b08 result=ok original=0x1018c0600
|
||||||
|
2026-06-21 03:15:03.172 +17172ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-21 03:15:03.216 +17216ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-21 03:15:03.223 +17223ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-21 03:15:03.230 +17230ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-21 03:15:03.237 +17237ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-21 03:15:03.244 +17244ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-21 03:15:33.441 +47441ms hook GPSRouteProducer 0x44cc7c call=0 graph=0x591db1080 query=0x794bdf70 outResult=0x794be0d0 query_start00=(-1403.95,-758.791,3.64088,1) query_end10=(-2147.66,-2171.23,5.45449,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer 0x44cc7c call=2 graph=0x591db1080 query=0x799fdf70 outResult=0x799fe0d0 query_start00=(-1403.26,-758.275,3.64083,1) query_end10=(-2143.4,-2168.72,5.45309,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer result call=0 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer result call=2 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:33.442 +47442ms hook GPSRouteProducer 0x44cc7c call=1 graph=0x591db1080 query=0x795bdf70 outResult=0x795be0d0 query_start00=(-1402.43,-747.214,3.63892,1) query_end10=(-580.4,-2113.95,5.13375,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:33.443 +47443ms hook GPSRouteProducer result call=1 value=0x1 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=32/0x20 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.106 +58106ms hook GPSRouteProducer 0x44cc7c call=3 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1411.65,-746.178,11.6512,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1118161408/0x42a5ca00 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.106 +58106ms hook GPSRouteProducer 0x44cc7c call=4 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1319.33,-698.032,8.2594,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.106 +58106ms hook GPSSearch 0x44f054 call=0 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826b10 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1411.65,11.8,-746.178) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=3 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.107 +58107ms hook GPSSearch result call=0 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.107 +58107ms hook GPSSearch 0x44f054 call=1 startHandle=0x100000ab00057 targetHandle=0x100000ab000bf graph=0x1a1826aa0 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1319.33,8.5,-698.032) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=4 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.107 +58107ms hook GPSRouteProducer 0x44cc7c call=5 graph=0x591db1080 query=0x31c2e0 outResult=0x31c440 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1356.53,-728.048,9.04568,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.108 +58108ms hook GPSEdgeCost 0x44f838 call=0 classCall=0 sourceClass=5 neighborClass=5 value=1.38482 multiplier=1 baseCost=1.38482 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00056 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1325.08,7.9,-706.537) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b1277518 neighborPoint_adj=210 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer result call=3 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2935979888/0xaeff7f70 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.108 +58108ms hook GPSEdgeCost 0x44f838 call=1 classCall=1 sourceClass=5 neighborClass=5 value=2.42146 multiplier=1 baseCost=2.42146 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00053 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1327.21,7.9,-709.69) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b12774dc neighborPoint_adj=203 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x5 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer 0x44cc7c call=7 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1409.76,-746.817,11.6752,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1107826176/0x42081600 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.108 +58108ms hook GPSRouteProducer 0x44cc7c call=8 graph=0x591db1080 query=0x796be330 outResult=0x796be490 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1375.08,-727.725,9.01456,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.109 +58109ms hook GPSEdgeCost 0x44f838 call=2 classCall=2 sourceClass=5 neighborClass=5 value=0.716923 multiplier=1 baseCost=0.716923 previousHandle=0x0 currentHandle=0x100000ab00057 neighborHandle=0x100000ab00058 provider=0x79d7cbd0 currentState=(-1325.86,7.9,-707.684) neighborState=(-1326.55,7.9,-707.5) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b127752c currentPoint_adj=213 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x5 neighborSegment=0x15a0984578 neighborPoint=0x5b1277540 neighborPoint_adj=216 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x5 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.109 +58109ms hook GPSRouteProducer 0x44cc7c call=10 graph=0x591db1080 query=0x79e7e330 outResult=0x79e7e490 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.29,-693.515,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.109 +58109ms hook GPSRouteProducer 0x44cc7c call=9 graph=0x591db1080 query=0x797fe330 outResult=0x797fe490 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1376.81,-727.666,9.01226,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.109 +58109ms hook GPSSearch 0x44f054 call=2 startHandle=0x100000a5000ca targetHandle=0x100000a5000c5 graph=0x1a1826b10 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1356.53,9.1,-728.048) outPath=0x31b450 outCount=0x31a150 provider=0x31b160 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=5 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.109 +58109ms hook GPSSearch 0x44f054 call=4 startHandle=0x100000a000073 targetHandle=0x100000a00003a graph=0x1a18269c0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1375.08,9.1,-727.725) outPath=0x796bd4a0 outCount=0x796bc1a0 provider=0x796bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=8 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=3 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826a30 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1409.76,11.8,-746.817) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=7 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSEdgeCost 0x44f838 call=3 classCall=3 sourceClass=5 neighborClass=15 value=1.41212 multiplier=1 baseCost=1.41212 previousHandle=0x100000ab00057 currentHandle=0x100000ab00056 neighborHandle=0x100000ab0007f provider=0x79d7cbd0 currentState=(-1325.08,7.9,-706.537) neighborState=(-1324.29,7.9,-705.367) previousSegment=0x15a0984578 previousPoint=0x5b127752c previousPoint_adj=213 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a0984578 currentPoint=0x5b1277518 currentPoint_adj=210 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b127784c neighborPoint_adj=319 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSRouteProducer 0x44cc7c call=6 graph=0x591db1080 query=0x79bfe330 outResult=0x79bfe490 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1368.72,-727.811,9.02576,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=5 startHandle=0x100000ab00135 targetHandle=0x100000ab00154 graph=0x1a1826950 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.29,7.9,-693.515) outPath=0x79e7d4a0 outCount=0x79e7c1a0 provider=0x79e7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=10 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSRouteProducer 0x44cc7c call=12 graph=0x591db1080 query=0x795be330 outResult=0x795be490 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1315.81,-686.376,8.2222,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.110 +58110ms hook GPSSearch 0x44f054 call=7 startHandle=0x100000a00005a targetHandle=0x100000a000061 graph=0x1a1826790 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1368.72,9.1,-727.811) outPath=0x79bfd4a0 outCount=0x79bfc1a0 provider=0x79bfd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=6 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSSearch 0x44f054 call=6 startHandle=0x100000a00006d targetHandle=0x100000a000074 graph=0x1a18268e0 startPoint=(-1379.83,9.1,-725) targetPoint=(-1376.81,9.1,-727.666) outPath=0x797fd4a0 outCount=0x797fc1a0 provider=0x797fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=9 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=5 classCall=1 sourceClass=3 neighborClass=3 value=2.45059 multiplier=1 baseCost=2.45059 previousHandle=0x0 currentHandle=0x100000a000073 neighborHandle=0x100000a00006e provider=0x796bd1b0 currentState=(-1378.5,9.1,-725) neighborState=(-1378.55,9.1,-727.45) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b109910c currentPoint_adj=225 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b10990a8 neighborPoint_adj=216 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=7 classCall=5 sourceClass=5 neighborClass=5 value=0.401001 multiplier=1 baseCost=0.401001 previousHandle=0x0 currentHandle=0x100000ab00135 neighborHandle=0x100000ab0016c provider=0x79e7d1b0 currentState=(-1326.15,7.9,-690.519) neighborState=(-1326.13,7.9,-690.118) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b1278684 currentPoint_adj=701 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278ad0 neighborPoint_adj=817 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=4 classCall=0 sourceClass=3 neighborClass=3 value=0.48881 multiplier=1 baseCost=0.48881 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a00002d provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1360.8,9.1,-724.667) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984100 neighborPoint=0x5b1098b94 neighborPoint_adj=647 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=8 classCall=2 sourceClass=3 neighborClass=3 value=0.289185 multiplier=1 baseCost=0.289185 previousHandle=0x0 currentHandle=0x100000a00005a neighborHandle=0x100000a00005b provider=0x79bfd1b0 currentState=(-1371.98,9.1,-724.8) neighborState=(-1371.77,9.1,-724.996) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b1098f18 currentPoint_adj=176 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f2c neighborPoint_adj=178 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.111 +58111ms hook GPSEdgeCost 0x44f838 call=10 classCall=4 sourceClass=3 neighborClass=3 value=0.587521 multiplier=1 baseCost=0.587521 previousHandle=0x0 currentHandle=0x100000a000073 neighborHandle=0x100000a000075 provider=0x796bd1b0 currentState=(-1378.5,9.1,-725) neighborState=(-1378.04,9.1,-725.366) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b109910c currentPoint_adj=225 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1099134 neighborPoint_adj=230 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=6 classCall=4 sourceClass=5 neighborClass=5 value=1.7403 multiplier=1 baseCost=1.7403 previousHandle=0x100000ab00057 currentHandle=0x100000ab00056 neighborHandle=0x100000ab00048 provider=0x79d7cbd0 currentState=(-1325.08,7.9,-706.537) neighborState=(-1323.6,7.9,-707.45) previousSegment=0x15a0984578 previousPoint=0x5b127752c previousPoint_adj=213 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a0984578 currentPoint=0x5b1277518 currentPoint_adj=210 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1277400 neighborPoint_adj=177 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.112 +58112ms hook GPSRouteProducer 0x44cc7c call=11 graph=0x591db1080 query=0x794be330 outResult=0x794be490 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.62,-746.741,11.8422,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=13 classCall=6 sourceClass=3 neighborClass=3 value=0.11235 multiplier=1 baseCost=0.11235 previousHandle=0x100000a00005a currentHandle=0x100000a00005b neighborHandle=0x100000a00005c provider=0x79bfd1b0 currentState=(-1371.77,9.1,-724.996) neighborState=(-1371.69,9.1,-725.072) previousSegment=0x15a0984100 previousPoint=0x5b1098f18 previousPoint_adj=176 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f2c currentPoint_adj=178 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f40 neighborPoint_adj=181 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.112 +58112ms hook GPSEdgeCost 0x44f838 call=12 classCall=5 sourceClass=3 neighborClass=3 value=1.97685 multiplier=1 baseCost=1.97685 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a5000c9 provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1358.6,9.1,-725.75) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ee8 neighborPoint_adj=453 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.112 +58112ms hook GPSSearch result call=3 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSSearch 0x44f054 call=8 startHandle=0x100000ab00166 targetHandle=0x100000ab00152 graph=0x1a1826870 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1315.81,8.5,-686.376) outPath=0x795bd4a0 outCount=0x795bc1a0 provider=0x795bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=12 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=15 classCall=0 sourceClass=15 neighborClass=15 value=0.945754 multiplier=1 baseCost=0.945754 previousHandle=0x100000ab00056 currentHandle=0x100000ab0007f neighborHandle=0x100000ab0007e provider=0x79d7cbd0 currentState=(-1324.29,7.9,-705.367) neighborState=(-1323.78,8.1761,-704.618) previousSegment=0x15a0984578 previousPoint=0x5b1277518 previousPoint_adj=210 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b127784c currentPoint_adj=319 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277838 neighborPoint_adj=316 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=11 classCall=6 sourceClass=5 neighborClass=5 value=0.412059 multiplier=1 baseCost=0.412059 previousHandle=0x100000ab00135 currentHandle=0x100000ab0016c neighborHandle=0x100000ab0013e provider=0x79e7d1b0 currentState=(-1326.13,7.9,-690.118) neighborState=(-1326.11,7.9,-689.706) previousSegment=0x15a0984578 previousPoint=0x5b1278684 previousPoint_adj=701 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278ad0 currentPoint_adj=817 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278738 neighborPoint_adj=722 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSEdgeCost 0x44f838 call=14 classCall=7 sourceClass=3 neighborClass=3 value=0.310766 multiplier=1 baseCost=0.310766 previousHandle=0x100000a000073 currentHandle=0x100000a000075 neighborHandle=0x100000a000074 provider=0x796bd1b0 currentState=(-1378.04,9.1,-725.366) neighborState=(-1377.79,9.1,-725.56) previousSegment=0x15a0984100 previousPoint=0x5b109910c previousPoint_adj=225 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1099134 currentPoint_adj=230 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984100 neighborPoint=0x5b1099120 neighborPoint_adj=228 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSSearch 0x44f054 call=9 startHandle=0x100000aa0000e targetHandle=0x100000a900001 graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.62,11.8,-746.741) outPath=0x794bd4a0 outCount=0x794bc1a0 provider=0x794bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=11 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.113 +58113ms hook GPSRouteProducer 0x44cc7c call=13 graph=0x591db1080 query=0x79afe330 outResult=0x79afe490 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1296.28,-705.87,7.60401,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.114 +58114ms hook GPSRouteProducer 0x44cc7c call=15 graph=0x591db1080 query=0x798fe330 outResult=0x798fe490 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1359.05,-656.989,6.70182,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=19 classCall=1 sourceClass=15 neighborClass=15 value=1.07461 multiplier=1 baseCost=1.07461 previousHandle=0x100000ab00056 currentHandle=0x100000ab0007f neighborHandle=0x100000ab00080 provider=0x79d7cbd0 currentState=(-1324.29,7.9,-705.367) neighborState=(-1324.85,8.2,-704.5) previousSegment=0x15a0984578 previousPoint=0x5b1277518 previousPoint_adj=210 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b127784c currentPoint_adj=319 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277860 neighborPoint_adj=322 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=20 classCall=7 sourceClass=5 neighborClass=5 value=1.50551 multiplier=1 baseCost=1.50551 previousHandle=0x100000ab00135 currentHandle=0x100000ab0016c neighborHandle=0x100000ab0016d provider=0x79e7d1b0 currentState=(-1326.13,7.9,-690.118) neighborState=(-1327.5,7.9,-689.5) previousSegment=0x15a0984578 previousPoint=0x5b1278684 previousPoint_adj=701 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278ad0 currentPoint_adj=817 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278ae4 neighborPoint_adj=819 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=16 classCall=8 sourceClass=3 neighborClass=3 value=2.38988 multiplier=1 baseCost=2.38988 previousHandle=0x100000a00005b currentHandle=0x100000a00005c neighborHandle=0x100000a000059 provider=0x79bfd1b0 currentState=(-1371.69,9.1,-725.072) neighborState=(-1369.3,9.1,-725) previousSegment=0x15a0984100 previousPoint=0x5b1098f2c previousPoint_adj=178 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f40 currentPoint_adj=181 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f04 neighborPoint_adj=175 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.114 +58114ms hook GPSEdgeCost 0x44f838 call=17 classCall=9 sourceClass=3 neighborClass=3 value=4.13163 multiplier=1 baseCost=4.13163 previousHandle=0x0 currentHandle=0x100000a5000ca neighborHandle=0x100000a5000cb provider=0x31b160 currentState=(-1360.42,9.1,-724.971) neighborState=(-1357.18,9.1,-727.538) previousSegment=0 previousPoint=0 currentSegment=0x15a0984308 currentPoint=0x5b10f5efc currentPoint_adj=963 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5f10 neighborPoint_adj=458 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=21 classCall=11 sourceClass=3 neighborClass=3 value=0.9241 multiplier=1 baseCost=0.9241 previousHandle=0x100000a000075 currentHandle=0x100000a000074 neighborHandle=0x100000a000072 provider=0x796bd1b0 currentState=(-1377.79,9.1,-725.56) neighborState=(-1377.1,9.1,-724.95) previousSegment=0x15a0984100 previousPoint=0x5b1099134 previousPoint_adj=230 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984100 currentPoint=0x5b1099120 currentPoint_adj=228 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b10990f8 neighborPoint_adj=223 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=23 classCall=2 sourceClass=15 neighborClass=3 value=0.926298 multiplier=1 baseCost=0.926298 previousHandle=0x100000ab0007f currentHandle=0x100000ab0007e neighborHandle=0x100000ab000b5 provider=0x79d7cbd0 currentState=(-1323.78,8.1761,-704.618) neighborState=(-1323.8,8.5,-703.75) previousSegment=0x15a0984578 previousPoint=0x5b127784c previousPoint_adj=319 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=15 previousPoint_raw13=0xf currentSegment=0x15a0984578 currentPoint=0x5b1277838 currentPoint_adj=316 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b1277c84 neighborPoint_adj=439 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSRouteProducer result call=7 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2935979888/0xaeff7f70 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=26 classCall=14 sourceClass=3 neighborClass=3 value=0.539255 multiplier=1 baseCost=0.539255 previousHandle=0x100000a5000ca currentHandle=0x100000a5000cb neighborHandle=0x100000a5000c7 provider=0x31b160 currentState=(-1357.18,9.1,-727.538) neighborState=(-1356.76,9.1,-727.872) previousSegment=0x15a0984308 previousPoint=0x5b10f5efc previousPoint_adj=963 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984308 currentPoint=0x5b10f5f10 currentPoint_adj=458 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ec0 neighborPoint_adj=449 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSRouteProducer 0x44cc7c call=16 graph=0x591db1080 query=0x793be8c0 outResult=0x793beb68 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1416.09,-755.121,11.7576,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1095910656/0x41524500 query_ptr98=0 query_ptra0=0 query_flagsa8=2727543024/0xa29300f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.115 +58115ms hook GPSEdgeCost 0x44f838 call=24 classCall=8 sourceClass=5 neighborClass=5 value=0.597161 multiplier=1 baseCost=0.597161 previousHandle=0x100000ab0016c currentHandle=0x100000ab0013e neighborHandle=0x100000ab00140 provider=0x79e7d1b0 currentState=(-1326.11,7.9,-689.706) neighborState=(-1326.08,7.9,-689.11) previousSegment=0x15a0984578 previousPoint=0x5b1278ad0 previousPoint_adj=817 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278738 currentPoint_adj=722 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b1278760 neighborPoint_adj=727 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=22 classCall=12 sourceClass=3 neighborClass=3 value=1.64323 multiplier=1 baseCost=1.64323 previousHandle=0x0 currentHandle=0x100000aa0000e neighborHandle=0x100000aa0000d provider=0x794bd1b0 currentState=(-1322.7,11.8,-743.097) neighborState=(-1321.89,11.8,-744.525) previousSegment=0 previousPoint=0 currentSegment=0x15a0984510 currentPoint=0x5b125b270 currentPoint_adj=28 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984510 neighborPoint=0x5b125b25c neighborPoint_adj=26 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=30 classCall=9 sourceClass=5 neighborClass=5 value=0.161755 multiplier=1 baseCost=0.161755 previousHandle=0x100000ab0013e currentHandle=0x100000ab00140 neighborHandle=0x100000ab0013f provider=0x79e7d1b0 currentState=(-1326.08,7.9,-689.11) neighborState=(-1326.07,7.9,-688.948) previousSegment=0x15a0984578 previousPoint=0x5b1278738 previousPoint_adj=722 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x85 currentSegment=0x15a0984578 currentPoint=0x5b1278760 currentPoint_adj=727 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=5 currentPoint_raw13=0x85 neighborSegment=0x15a0984578 neighborPoint=0x5b127874c neighborPoint_adj=725 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=5 neighborPoint_raw13=0x85 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.116 +58116ms hook GPSRouteProducer 0x44cc7c call=14 graph=0x591db1080 query=0x799fe330 outResult=0x799fe490 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.05,-743.591,11.7714,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=18 classCall=10 sourceClass=3 neighborClass=3 value=0.396966 multiplier=1 baseCost=0.396966 previousHandle=0x0 currentHandle=0x100000ab00166 neighborHandle=0x100000ab00164 provider=0x795bd1b0 currentState=(-1321.41,8.5,-683.25) neighborState=(-1321.8,8.5,-683.2) previousSegment=0 previousPoint=0 currentSegment=0x15a0984578 currentPoint=0x5b1278a58 currentPoint_adj=803 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984578 neighborPoint=0x5b1278a30 neighborPoint_adj=798 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.116 +58116ms hook GPSEdgeCost 0x44f838 call=28 classCall=3 sourceClass=15 neighborClass=15 value=0.349674 multiplier=1 baseCost=0.349674 previousHandle=0x100000ab0007f currentHandle=0x100000ab0007e neighborHandle=0x100000ab00073 provider=0x79d7cbd0 currentState=(-1323.78,8.1761,-704.618) neighborState=(-1323.6,8.29548,-704.345) previousSegment=0x15a0984578 previousPoint=0x5b127784c previousPoint_adj=319 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=15 previousPoint_raw13=0xf currentSegment=0x15a0984578 currentPoint=0x5b1277838 currentPoint_adj=316 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=15 currentPoint_raw13=0xf neighborSegment=0x15a0984578 neighborPoint=0x5b127775c neighborPoint_adj=287 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=15 neighborPoint_raw13=0xf ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.117 +58117ms hook GPSSearch result call=5 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[5:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=29 classCall=16 sourceClass=3 neighborClass=3 value=3.31254 multiplier=1 baseCost=3.31254 previousHandle=0x100000a5000ca currentHandle=0x100000a5000cb neighborHandle=0x100000a5000c8 provider=0x31b160 currentState=(-1357.18,9.1,-727.538) neighborState=(-1359.15,9.1,-730.2) previousSegment=0x15a0984308 previousPoint=0x5b10f5efc previousPoint_adj=963 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984308 currentPoint=0x5b10f5f10 currentPoint_adj=458 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984308 neighborPoint=0x5b10f5ed4 neighborPoint_adj=450 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=31 classCall=17 sourceClass=3 neighborClass=3 value=1.96563 multiplier=1 baseCost=1.96563 previousHandle=0x0 currentHandle=0x100000aa0000e neighborHandle=0x100000aa0000f provider=0x794bd1b0 currentState=(-1322.7,11.8,-743.097) neighborState=(-1320.75,11.8,-742.85) previousSegment=0 previousPoint=0 currentSegment=0x15a0984510 currentPoint=0x5b125b270 currentPoint_adj=28 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x83 neighborSegment=0x15a0984510 neighborPoint=0x5b125b284 neighborPoint_adj=31 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=25 classCall=13 sourceClass=3 neighborClass=3 value=0.00682394 multiplier=1 baseCost=0.00682394 previousHandle=0x100000a00005b currentHandle=0x100000a00005c neighborHandle=0x100000a00005d provider=0x79bfd1b0 currentState=(-1371.69,9.1,-725.072) neighborState=(-1371.68,9.1,-725.077) previousSegment=0x15a0984100 previousPoint=0x5b1098f2c previousPoint_adj=178 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984100 currentPoint=0x5b1098f40 currentPoint_adj=181 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098f54 neighborPoint_adj=183 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.117 +58117ms hook GPSEdgeCost 0x44f838 call=27 classCall=15 sourceClass=3 neighborClass=3 value=2.03871 multiplier=1 baseCost=2.03871 previousHandle=0x100000a000075 currentHandle=0x100000a000074 neighborHandle=0x100000a000038 provider=0x796bd1b0 currentState=(-1377.79,9.1,-725.56) neighborState=(-1376.2,9.1,-726.83) previousSegment=0x15a0984100 previousPoint=0x5b1099134 previousPoint_adj=230 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x83 currentSegment=0x15a0984100 currentPoint=0x5b1099120 currentPoint_adj=228 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098c70 neighborPoint_adj=109 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x3 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSEdgeCost 0x44f838 call=9 classCall=3 sourceClass=3 neighborClass=3 value=3.0004 multiplier=1 baseCost=3.0004 previousHandle=0x0 currentHandle=0x100000a00006d neighborHandle=0x100000a00004b provider=0x797fd1b0 currentState=(-1379.83,9.1,-725) neighborState=(-1381.7,9.1,-727.35) previousSegment=0 previousPoint=0 currentSegment=0x15a0984100 currentPoint=0x5b1099094 currentPoint_adj=214 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=3 currentPoint_raw13=0x3 neighborSegment=0x15a0984100 neighborPoint=0x5b1098dec neighborPoint_adj=145 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=3 neighborPoint_raw13=0x83 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=8 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=13 filterPass=13 filterFail=0 filterBase=13 filterFiltered=0 filterPassClasses=[3:13] filterFailClasses=[none] filterPassMaskBits=[0:13,1:13] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=2 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=4 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[3:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSSearch result call=1 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=19 filterPass=19 filterFail=0 filterBase=0 filterFiltered=19 filterPassClasses=[3:9,5:4,15:6] filterFailClasses=[none] filterPassMaskBits=[0:19,1:19] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.118 +58118ms hook GPSRouteProducer result call=12 value=0x42ae6120 out_u0c=9/0x9 out_u1c=2/0x2 out_u20=2962688624/0xb0970a70 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1143885462/0x442e4e96 out_flags40=1/0x1 out_state42=1 edgeCostCalls=14 edgeCostMin=0.220 edgeCostMax=6.869 edgeCostAvg=1.684 edgeSrcClasses=[3:14] edgeDstClasses=[3:13,invalid:1] edgeRetRvas=[0x44f457:13,0x44f629:1] edgeSamples=[0:3>3 cost=0.397 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=1.605 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.949 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.329 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=4.654 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=1.159 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=0.931 ret=0x44f457 cur=0x100000ab0013d dst=0x100000ab00169]
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=10 startHandle=0x100000ab00087 targetHandle=0x100000ab00061 graph=0x1a1826950 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1296.28,8.08714,-705.87) outPath=0x79afd4a0 outCount=0x79afc1a0 provider=0x79afd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=13 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSRouteProducer result call=5 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2251192256/0x862e77c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.071 edgeCostMax=4.132 edgeCostAvg=1.533 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.489 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=1.977 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.132 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=0.539 ret=0x44f457 cur=0x100000a5000cb dst=0x100000a5000c7;4:3>3 cost=3.313 ret=0x44f457 cur=0x100000a5000cb dst=0x100000a5000c8;5:3>3 cost=0.071 ret=0x44f457 cur=0x100000a5000c7 dst=0x100000a5000c5;6:3>255 cost=0.212 ret=0x44f629 cur=0x100000a5000c5 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=11 startHandle=0x1000009b00100 targetHandle=0x1000009b00076 graph=0x1a1826870 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.05,11.8,-743.591) outPath=0x799fd4a0 outCount=0x799fc1a0 provider=0x799fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=14 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSSearch result call=6 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSSearch 0x44f054 call=12 startHandle=0x1000009a003a4 targetHandle=0x1000009a002b1 graph=0x1a1826b10 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1416.09,11.8,-755.121) outPath=0x793bd9e0 outCount=0x793bc6e0 provider=0x793bcbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=16 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.119 +58119ms hook GPSRouteProducer result call=4 value=0x42ae6120 out_u0c=10/0xa out_u1c=5/0x5 out_u20=2908404688/0xad5abbd0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=0.050 edgeCostMax=3.158 edgeCostAvg=1.372 edgeSrcClasses=[3:9,5:5,15:6] edgeDstClasses=[3:9,5:4,15:6,invalid:1] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:5>5 cost=1.385 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=2.421 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.717 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=1.412 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=1.740 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:15>15 cost=0.946 ret=0x44f457 cur=0x100000ab0007f dst=0x100000ab0007e;6:15>15 cost=1.075 ret=0x44f457 cur=0x100000ab0007f dst=0x100000ab00080;7:15>3 cost=0.926 ret=0x44f457 cur=0x100000ab0007e dst=0x100000ab000b5]
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=10 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[3:3,15:1] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSRouteProducer 0x44cc7c call=17 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1316.99,-675.387,8.22249,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1113861888/0x42642f00 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=9 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSSearch result call=7 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSRouteProducer result call=8 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917919312/0xadebea50 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.074 edgeCostMax=2.451 edgeCostAvg=1.239 edgeSrcClasses=[3:8] edgeDstClasses=[3:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.588 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.311 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.924 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=2.039 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=2.162 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.361 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>255 cost=0.074 ret=0x44f629 cur=0x100000a00003a dst=0x0]
|
||||||
|
2026-06-21 03:15:44.120 +58120ms hook GPSSearch 0x44f054 call=13 startHandle=0x100000a2000ea targetHandle=0x100000a70010b graph=0x1a18269c0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1359.05,6.66108,-656.989) outPath=0x798fd4a0 outCount=0x798fc1a0 provider=0x798fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=15 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=9 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2946422576/0xaf9ed730 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.410 edgeCostMax=3.000 edgeCostAvg=1.172 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=3.000 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=1.017 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.660 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=0.568 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=1.375 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>255 cost=0.410 ret=0x44f629 cur=0x100000a000074 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.121 +58121ms hook GPSSearch result call=11 value=0x40000000 hasOutCount=1 outCount=18 filterCalls=28 filterPass=28 filterFail=0 filterBase=28 filterFiltered=0 filterPassClasses=[3:28] filterFailClasses=[none] filterPassMaskBits=[0:28,1:28] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer 0x44cc7c call=18 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1366.46,-727.82,9.03019,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1119377664/0x42b85900 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=10 value=0x42ae6120 out_u0c=4/0x4 out_u1c=2/0x2 out_u20=2952744576/0xafff4e80 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.162 edgeCostMax=4.447 edgeCostAvg=1.302 edgeSrcClasses=[5:9] edgeDstClasses=[5:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:5>5 cost=0.401 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.412 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.506 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.597 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.162 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f;5:5>5 cost=0.285 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;6:5>5 cost=3.438 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;7:5>255 cost=0.470 ret=0x44f629 cur=0x100000ab00154 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.121 +58121ms hook GPSRouteProducer result call=6 value=0x42ae6120 out_u0c=6/0x6 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.007 edgeCostMax=4.027 edgeCostAvg=1.139 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.112 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.390 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.007 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.009 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>255 cost=4.027 ret=0x44f629 cur=0x100000a000061 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSSearch result call=12 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=19 filterPass=19 filterFail=0 filterBase=0 filterFiltered=19 filterPassClasses=[3:19] filterFailClasses=[none] filterPassMaskBits=[0:19,1:19] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer result call=13 value=0x42ae6120 out_u0c=4/0x4 out_u1c=1/0x1 out_u20=2925681376/0xae625ae0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.838 edgeCostMax=2.371 edgeCostAvg=1.462 edgeSrcClasses=[3:4,15:1] edgeDstClasses=[3:3,15:1,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=2.371 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=1.338 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.199 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00085;3:3>15 cost=0.838 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00061;4:15>255 cost=1.566 ret=0x44f629 cur=0x100000ab00061 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=20 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1384.54,-727.541,8.99908,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1142056704/0x44126700 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSSearch 0x44f054 call=14 startHandle=0x100000ab00166 targetHandle=0x100000ac0000b graph=0x1a18268e0 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1316.99,8.5,-675.387) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=17 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=19 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1316.45,-707.932,7.52451,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1116620288/0x428e4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.122 +58122ms hook GPSRouteProducer 0x44cc7c call=24 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1289.3,-708.059,7.62778,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1151461376/0x44a1e800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer 0x44cc7c call=21 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1378.03,-727.641,9.01028,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1137443328/0x43cc0200 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=11 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=982888138/0x3a95aeca out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.253 edgeCostMax=1.966 edgeCostAvg=1.124 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.643 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=0.525 ret=0x44f457 cur=0x100000aa0000d dst=0x100000aa0000c;3:3>3 cost=0.253 ret=0x44f457 cur=0x100000aa0000c dst=0x100000a900002;4:3>3 cost=1.709 ret=0x44f457 cur=0x100000a900002 dst=0x100000a90000f;5:3>3 cost=1.412 ret=0x44f457 cur=0x100000a900002 dst=0x100000a900001;6:3>255 cost=0.363 ret=0x44f629 cur=0x100000a900001 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=14 value=0x42ae6120 out_u0c=15/0xf out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=29 edgeCostMin=0.033 edgeCostMax=9.470 edgeCostAvg=1.157 edgeSrcClasses=[3:29] edgeDstClasses=[3:28,invalid:1] edgeRetRvas=[0x44f457:28,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.494 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.035 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.971 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.638 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;5:3>3 cost=1.557 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;6:3>3 cost=1.107 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;7:3>3 cost=1.233 ret=0x44f457 cur=0x1000009b000fd dst=0x1000009b000fc]
|
||||||
|
2026-06-21 03:15:44.123 +58123ms hook GPSRouteProducer result call=16 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2910684448/0xad7d8520 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=20 edgeCostMin=0.078 edgeCostMax=9.186 edgeCostAvg=2.975 edgeSrcClasses=[3:20] edgeDstClasses=[3:19,invalid:1] edgeRetRvas=[0x44f457:19,0x44f629:1] edgeSamples=[0:3>3 cost=1.717 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009b00077;1:3>3 cost=4.507 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009a003a3;2:3>3 cost=4.069 ret=0x44f457 cur=0x1000009a003a4 dst=0x1000009a003a2;3:3>3 cost=0.078 ret=0x44f457 cur=0x1000009a003a2 dst=0x1000009a003a1;4:3>3 cost=8.584 ret=0x44f457 cur=0x1000009a003a2 dst=0x1000009a00375;5:3>3 cost=3.862 ret=0x44f457 cur=0x1000009a003a1 dst=0x1000009a003a0;6:3>3 cost=8.795 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b;7:3>3 cost=0.210 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b00078]
|
||||||
|
2026-06-21 03:15:44.123 +58123ms hook GPSSearch result call=14 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=12 filterPass=12 filterFail=0 filterBase=0 filterFiltered=12 filterPassClasses=[3:11,5:1] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.124 +58124ms hook GPSRouteProducer 0x44cc7c call=22 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1385.37,-727.53,9.00245,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1142654464/0x441b8600 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.124 +58124ms hook GPSSearch 0x44f054 call=16 startHandle=0x100000a000073 targetHandle=0x100000a00004e graph=0x1a1826b10 startPoint=(-1378.5,9.1,-725) targetPoint=(-1384.54,9.1,-727.541) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=20 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.125 +58125ms hook GPSSearch 0x44f054 call=15 startHandle=0x100000a5000ca targetHandle=0x100000a00006c graph=0x1a1826870 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1366.46,9.1,-727.82) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=18 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.125 +58125ms hook GPSRouteProducer 0x44cc7c call=23 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.497,7.535,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1138495488/0x43dc1000 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.125 +58125ms hook GPSRouteProducer result call=17 value=0x42ae6120 out_u0c=8/0x8 out_u1c=1/0x1 out_u20=2919653936/0xae066230 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.023 edgeCostMax=6.829 edgeCostAvg=2.366 edgeSrcClasses=[3:13] edgeDstClasses=[3:11,5:1,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.128 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=1.247 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=3.012 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=5.373 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=3.861 ret=0x44f457 cur=0x100000ac00006 dst=0x100000ac00008]
|
||||||
|
2026-06-21 03:15:44.125 +58125ms hook GPSSearch result call=13 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSRouteProducer 0x44cc7c call=25 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.49,-738.197,11.8735,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1131759872/0x43754900 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=19 startHandle=0x100000a00005a targetHandle=0x100000a000075 graph=0x1a1826950 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1378.03,9.1,-727.641) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=21 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSSearch result call=16 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=17 startHandle=0x100000ab00057 targetHandle=0x100000ab0003a graph=0x1a1826a30 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1316.45,7.9,-707.932) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=19 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSRouteProducer result call=15 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2965123664/0xb0bc3250 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.002 edgeCostMax=2.777 edgeCostAvg=1.171 edgeSrcClasses=[3:8,15:4] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.268 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.469 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.139 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.571 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=1.812 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.808 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.004 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
|
||||||
|
2026-06-21 03:15:44.126 +58126ms hook GPSSearch 0x44f054 call=18 startHandle=0x100000ab00087 targetHandle=0x100000c90002c graph=0x1a1826790 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1289.3,7.99446,-708.059) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=24 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.127 +58127ms hook GPSRouteProducer 0x44cc7c call=27 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1318.26,-692.367,8.22228,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1124857344/0x430bf600 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.127 +58127ms hook GPSSearch 0x44f054 call=21 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a1826aa0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.497) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=23 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.127 +58127ms hook GPSSearch result call=15 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.127 +58127ms hook GPSSearch 0x44f054 call=22 startHandle=0x100000aa0000e targetHandle=0x100000aa00034 graph=0x1a18269c0 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.49,11.8,-738.197) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=25 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.127 +58127ms hook GPSSearch result call=17 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=14 filterPass=14 filterFail=0 filterBase=0 filterFiltered=14 filterPassClasses=[5:11,15:3] filterFailClasses=[none] filterPassMaskBits=[0:14,1:14] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.128 +58128ms hook GPSSearch result call=19 value=0x40000000 hasOutCount=1 outCount=13 filterCalls=18 filterPass=18 filterFail=0 filterBase=0 filterFiltered=18 filterPassClasses=[3:18] filterFailClasses=[none] filterPassMaskBits=[0:18,1:18] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer 0x44cc7c call=28 graph=0x591db1080 query=0x793be330 outResult=0x793be490 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1286.16,-707.27,7.63842,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer 0x44cc7c call=26 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.01,-748.694,11.75,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1084199936/0x409f9400 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.128 +58128ms hook GPSRouteProducer result call=20 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2918751904/0xadf89ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.048 edgeCostMax=3.220 edgeCostAvg=1.193 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.111 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=2.462 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.048 ret=0x44f457 cur=0x100000a00006e dst=0x100000a00006d;3:3>3 cost=3.220 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;4:3>3 cost=0.463 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;5:3>3 cost=1.720 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;6:3>3 cost=1.890 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;7:3>3 cost=0.298 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e]
|
||||||
|
2026-06-21 03:15:44.128 +58128ms hook GPSSearch 0x44f054 call=20 startHandle=0x100000a00006d targetHandle=0x100000a00004e graph=0x1a18268e0 startPoint=(-1379.83,9.1,-725) targetPoint=(-1385.37,9.1,-727.53) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=22 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer 0x44cc7c call=29 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1358.76,-657.184,6.88443,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1063270656/0x3f603900 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer result call=19 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2908404688/0xad5abbd0 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.229 edgeCostMax=2.724 edgeCostAvg=1.622 edgeSrcClasses=[5:15] edgeDstClasses=[5:11,15:3,invalid:1] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:5>5 cost=1.368 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.757 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.376 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.890 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.229 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.410 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.819 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=21 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=22 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSRouteProducer result call=21 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2937431536/0xaf15a5f0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.013 edgeCostMax=5.308 edgeCostAvg=1.475 edgeSrcClasses=[3:19] edgeDstClasses=[3:18,invalid:1] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=0.555 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.328 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.455 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.016 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.793 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=0.572 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=5.308 ret=0x44f457 cur=0x100000a000062 dst=0x100000a00005e]
|
||||||
|
2026-06-21 03:15:44.129 +58129ms hook GPSSearch result call=18 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=24 filterPass=24 filterFail=0 filterBase=0 filterFiltered=24 filterPassClasses=[3:8,4:2,5:6,15:8] filterFailClasses=[none] filterPassMaskBits=[0:24,1:24] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer result call=23 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2952673984/0xaffe3ac0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.727 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.265 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSSearch 0x44f054 call=24 startHandle=0x100000c900081 targetHandle=0x100000c90002f graph=0x1a1826950 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1286.16,8.04782,-707.27) outPath=0x793bd4a0 outCount=0x793bc1a0 provider=0x793bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=28 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer result call=18 value=0x42ae6120 out_u0c=7/0x7 out_u1c=5/0x5 out_u20=2251127744/0x862d7bc0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.190 edgeCostMax=4.452 edgeCostAvg=1.651 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.190 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=1.011 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;4:3>3 cost=1.957 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f;5:3>3 cost=0.825 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002e;6:3>3 cost=4.452 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002b;7:3>3 cost=1.600 ret=0x44f457 cur=0x100000a00002e dst=0x100000a00002c]
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSRouteProducer 0x44cc7c call=31 graph=0x591db1080 query=0x79d7e8c0 outResult=0x79d7eb68 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1315.62,-708.194,7.5384,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3046855952/0xb59b5510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSSearch result call=20 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.130 +58130ms hook GPSSearch 0x44f054 call=26 startHandle=0x100000a2000ea targetHandle=0x100000a70010b graph=0x1a1826870 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1358.76,6.81809,-657.184) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=29 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.131 +58131ms hook GPSSearch 0x44f054 call=23 startHandle=0x100000ab00166 targetHandle=0x100000ab00133 graph=0x1a1826b10 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1318.26,8.5,-692.367) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=27 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer result call=24 value=0x42ae6120 out_u0c=15/0xf out_u1c=2/0x2 out_u20=2947761968/0xafb34730 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=25 edgeCostMin=0.057 edgeCostMax=3.754 edgeCostAvg=1.240 edgeSrcClasses=[3:10,5:9,15:6] edgeDstClasses=[3:8,4:2,5:6,15:8,invalid:1] edgeRetRvas=[0x44f457:24,0x44f629:1] edgeSamples=[0:3>3 cost=1.944 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=1.338 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.253 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00085;3:3>15 cost=1.631 ret=0x44f457 cur=0x100000ab00086 dst=0x100000ab00061;4:3>3 cost=0.587 ret=0x44f457 cur=0x100000ab00085 dst=0x100000c90007a;5:3>3 cost=1.893 ret=0x44f457 cur=0x100000ab00085 dst=0x100000ab00084;6:3>3 cost=0.161 ret=0x44f457 cur=0x100000c90007a dst=0x100000c90007b;7:3>3 cost=0.101 ret=0x44f457 cur=0x100000c90007b dst=0x100000c90007c]
|
||||||
|
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=33 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.88,-692.499,7.58709,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160828928/0x4530d800 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=32 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1366.04,-727.827,9.03092,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1135103232/0x43a84d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.131 +58131ms hook GPSRouteProducer 0x44cc7c call=34 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1354.18,-727.913,8.74462,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1143151616/0x44231c00 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.132 +58132ms hook GPSSearch 0x44f054 call=27 startHandle=0x100000ab00057 targetHandle=0x100000ab0003f graph=0x1a1826790 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1315.62,7.9,-708.194) outPath=0x79d7d9e0 outCount=0x79d7c6e0 provider=0x79d7cbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=31 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.132 +58132ms hook GPSSearch result call=24 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=16 filterPass=16 filterFail=0 filterBase=16 filterFiltered=0 filterPassClasses=[3:3,4:1,5:8,15:4] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer result call=22 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2945537648/0xaf915670 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.289 edgeCostMax=2.386 edgeCostAvg=1.411 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.905 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;3:3>3 cost=1.406 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;4:3>3 cost=2.241 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;5:3>3 cost=0.344 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e;6:3>255 cost=1.306 ret=0x44f629 cur=0x100000a00004e dst=0x0]
|
||||||
|
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer result call=25 value=0x42ae6120 out_u0c=9/0x9 out_u1c=8/0x8 out_u20=3116989504/0xb9c97c40 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.167 edgeCostMax=3.731 edgeCostAvg=1.149 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=2.149 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=0.515 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=3.731 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=0.210 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.386 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.935 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.423 ret=0x44f457 cur=0x100000aa0000b dst=0x100000aa00009;7:3>3 cost=0.370 ret=0x44f457 cur=0x100000aa00009 dst=0x100000aa00032]
|
||||||
|
2026-06-21 03:15:44.132 +58132ms hook GPSRouteProducer 0x44cc7c call=30 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1372.54,-727.726,9.01972,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1126105600/0x431f0200 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.133 +58133ms hook GPSRouteProducer result call=28 value=0x42ae6120 out_u0c=10/0xa out_u1c=4/0x4 out_u20=2934976272/0xaef02f10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.009 edgeCostMax=4.905 edgeCostAvg=1.208 edgeSrcClasses=[3:4,5:9,15:4] edgeDstClasses=[3:3,4:1,5:8,15:4,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:3>3 cost=0.812 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.823 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=1.001 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:5>5 cost=0.197 ret=0x44f457 cur=0x100000c900056 dst=0x100000c900055;5:5>5 cost=0.582 ret=0x44f457 cur=0x100000c900056 dst=0x100000c90005b;6:5>15 cost=0.030 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900048;7:5>5 cost=1.637 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900054]
|
||||||
|
2026-06-21 03:15:44.133 +58133ms hook GPSSearch result call=26 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.133 +58133ms hook GPSSearch result call=27 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=16 filterPass=16 filterFail=0 filterBase=0 filterFiltered=16 filterPassClasses=[5:13,15:3] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.133 +58133ms hook GPSSearch 0x44f054 call=30 startHandle=0x100000a5000ca targetHandle=0x100000a5000ee graph=0x1a1826aa0 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1354.18,8.36203,-727.913) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=34 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSSearch 0x44f054 call=28 startHandle=0x100000ab00135 targetHandle=0x100000ab0013b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.88,7.9,-692.499) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=33 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=37 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.9,-748.189,11.8343,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117369088/0x4299b300 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=36 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1373.88,-727.706,9.01742,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1123354112/0x42f50600 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSRouteProducer 0x44cc7c call=35 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1309.3,-707.895,7.67538,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1166424064/0x45863800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSSearch 0x44f054 call=29 startHandle=0x100000a00005a targetHandle=0x100000a00006c graph=0x1a18269c0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1366.04,9.1,-727.827) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=32 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.134 +58134ms hook GPSSearch result call=23 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=37 filterPass=37 filterFail=0 filterBase=0 filterFiltered=37 filterPassClasses=[3:26,5:11] filterFailClasses=[none] filterPassMaskBits=[0:37,1:37] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.135 +58135ms hook GPSSearch 0x44f054 call=25 startHandle=0x1000009b00100 targetHandle=0x1000009a0037b graph=0x1a1826a30 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.01,11.8,-748.694) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=26 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer result call=31 value=0x42ae6120 out_u0c=10/0xa out_u1c=7/0x7 out_u20=2546494608/0x97c86c90 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.235 edgeCostMax=2.833 edgeCostAvg=1.622 edgeSrcClasses=[5:17] edgeDstClasses=[5:13,15:3,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:5>5 cost=1.385 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.751 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.409 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.875 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.235 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.464 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.786 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
|
||||||
|
2026-06-21 03:15:44.135 +58135ms hook GPSSearch result call=30 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=22 filterPass=22 filterFail=0 filterBase=0 filterFiltered=22 filterPassClasses=[3:15,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer result call=29 value=0x42ae6120 out_u0c=9/0x9 out_u1c=5/0x5 out_u20=2965123664/0xb0bc3250 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.053 edgeCostMax=2.621 edgeCostAvg=1.138 edgeSrcClasses=[3:8,15:4] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.287 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.503 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=1.976 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.621 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=2.033 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.689 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.089 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
|
||||||
|
2026-06-21 03:15:44.135 +58135ms hook GPSRouteProducer 0x44cc7c call=38 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.16,-708.142,7.66219,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157648640/0x45005100 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=32 startHandle=0x100000aa0000e targetHandle=0x100000a900033 graph=0x1a1826790 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.9,11.8,-748.189) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=37 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=31 startHandle=0x100000a000073 targetHandle=0x100000a000062 graph=0x1a1826950 startPoint=(-1378.5,9.1,-725) targetPoint=(-1372.54,9.1,-727.726) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=30 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.136 +58136ms hook GPSSearch 0x44f054 call=33 startHandle=0x100000ab00087 targetHandle=0x100000ab00031 graph=0x1a1826870 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1309.3,7.78616,-707.895) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=35 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.136 +58136ms hook GPSRouteProducer result call=27 value=0x42ae6120 out_u0c=9/0x9 out_u1c=3/0x3 out_u20=2920854080/0xae18b240 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=38 edgeCostMin=0.075 edgeCostMax=9.283 edgeCostAvg=1.808 edgeSrcClasses=[3:29,5:9] edgeDstClasses=[3:26,5:11,invalid:1] edgeRetRvas=[0x44f457:37,0x44f629:1] edgeSamples=[0:3>3 cost=0.315 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.407 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.129 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab0015c;4:3>3 cost=0.939 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab00160;5:3>3 cost=1.582 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;6:3>3 cost=0.338 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;7:3>3 cost=2.270 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006]
|
||||||
|
2026-06-21 03:15:44.136 +58136ms hook GPSSearch result call=28 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.137 +58137ms hook GPSSearch result call=29 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=0 filterFiltered=9 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.137 +58137ms hook GPSRouteProducer result call=34 value=0x42ae6120 out_u0c=12/0xc out_u1c=10/0xa out_u20=2546469904/0x97c80c10 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.013 edgeCostMax=4.148 edgeCostAvg=1.092 edgeSrcClasses=[3:16,15:7] edgeDstClasses=[3:15,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=3.684 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=3.242 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c3;4:3>3 cost=0.601 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c6;5:3>3 cost=0.152 ret=0x44f457 cur=0x100000a5000c6 dst=0x100000a5000c1;6:3>3 cost=0.241 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;7:3>3 cost=3.314 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f]
|
||||||
|
2026-06-21 03:15:44.137 +58137ms hook GPSRouteProducer result call=33 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928864032/0xae92eb20 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.156 edgeCostMax=2.881 edgeCostAvg=1.034 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.156 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.838 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.594 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.554 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.181 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;5:5>255 cost=2.881 ret=0x44f629 cur=0x100000ab0013b dst=0x0]
|
||||||
|
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=33 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=22 filterPass=22 filterFail=0 filterBase=0 filterFiltered=22 filterPassClasses=[3:9,5:6,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.138 +58138ms hook GPSSearch 0x44f054 call=34 startHandle=0x100000a00006d targetHandle=0x100000a00003a graph=0x1a1826b10 startPoint=(-1379.83,9.1,-725) targetPoint=(-1373.88,9.1,-727.706) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=36 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=32 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.138 +58138ms hook GPSSearch result call=34 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=0 filterFiltered=9 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.138 +58138ms hook GPSRouteProducer 0x44cc7c call=42 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1352.09,-720.273,7.735,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1067971072/0x3fa7f200 query_ptr98=0 query_ptra0=0 query_flagsa8=3055183248/0xb61a6590 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.139 +58139ms hook GPSRouteProducer result call=35 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2947823504/0xafb43790 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.001 edgeCostMax=5.157 edgeCostAvg=1.543 edgeSrcClasses=[3:12,5:7,15:4] edgeDstClasses=[3:9,5:6,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=0.116 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=2.421 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:3>3 cost=0.569 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab0008a;5:3>3 cost=0.620 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab00091;6:3>15 cost=1.972 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00065;7:3>3 cost=1.488 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00092]
|
||||||
|
2026-06-21 03:15:44.139 +58139ms hook GPSRouteProducer 0x44cc7c call=41 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1317.57,-692.49,8.22228,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1146629632/0x44582e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3183227632/0xbdbc32f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.140 +58140ms hook GPSSearch result call=25 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=63 filterPass=63 filterFail=0 filterBase=0 filterFiltered=63 filterPassClasses=[3:63] filterFailClasses=[none] filterPassMaskBits=[0:63,1:63] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.140 +58140ms hook GPSSearch 0x44f054 call=37 startHandle=0x100000ab00166 targetHandle=0x100000ab00133 graph=0x1a1826790 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1317.57,8.5,-692.49) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=41 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=32 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2949023280/0xafc68630 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.013 edgeCostMax=4.194 edgeCostAvg=1.390 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.390 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.193 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.166 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.017 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.194 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=2.899 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=2.162 ret=0x44f457 cur=0x100000a00006b dst=0x100000a00006a]
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer 0x44cc7c call=44 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1289.4,-720.458,7.62758,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1151382528/0x44a0b400 query_ptr98=0 query_ptra0=0 query_flagsa8=3369079952/0xc8d01490 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSSearch 0x44f054 call=35 startHandle=0x100000c900081 targetHandle=0x100000c900034 graph=0x1a1826aa0 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.16,7.97771,-708.142) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=38 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSSearch result call=31 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=12 filterPass=12 filterFail=0 filterBase=0 filterFiltered=12 filterPassClasses=[3:12] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=37 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.266 edgeCostMax=2.352 edgeCostAvg=1.233 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=1.644 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=0.320 ret=0x44f457 cur=0x100000aa0000d dst=0x100000aa0000c;3:3>3 cost=0.266 ret=0x44f457 cur=0x100000aa0000c dst=0x100000a900002;4:3>3 cost=1.378 ret=0x44f457 cur=0x100000a900002 dst=0x100000a90000f;5:3>3 cost=1.672 ret=0x44f457 cur=0x100000a900002 dst=0x100000a900001;6:3>3 cost=2.352 ret=0x44f457 cur=0x100000a900001 dst=0x100000a900031;7:3>3 cost=1.058 ret=0x44f457 cur=0x100000a900001 dst=0x100000a900033]
|
||||||
|
2026-06-21 03:15:44.141 +58141ms hook GPSRouteProducer result call=36 value=0x42ae6120 out_u0c=8/0x8 out_u1c=3/0x3 out_u20=2945537648/0xaf915670 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.341 edgeCostMax=3.000 edgeCostAvg=1.273 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=3.000 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=1.028 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.341 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=0.557 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=0.493 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=1.178 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=1.573 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=2.013 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034]
|
||||||
|
2026-06-21 03:15:44.142 +58142ms hook GPSRouteProducer 0x44cc7c call=43 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1317.22,-682.448,8.2223,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117320704/0x4298f600 query_ptr98=0 query_ptra0=0 query_flagsa8=3223473360/0xc0224cd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.142 +58142ms hook GPSSearch result call=35 value=0x40000000 hasOutCount=1 outCount=15 filterCalls=25 filterPass=25 filterFail=0 filterBase=0 filterFiltered=25 filterPassClasses=[3:9,5:11,15:5] filterFailClasses=[none] filterPassMaskBits=[0:25,1:25] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.143 +58143ms hook GPSSearch result call=37 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=35 filterPass=35 filterFail=0 filterBase=0 filterFiltered=35 filterPassClasses=[3:26,5:9] filterFailClasses=[none] filterPassMaskBits=[0:35,1:35] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.143 +58143ms hook GPSRouteProducer 0x44cc7c call=47 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1375.52,-718.635,7.74419,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1083788288/0x40994c00 query_ptr98=0 query_ptra0=0 query_flagsa8=3238070768/0xc10109f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.143 +58143ms hook GPSRouteProducer result call=30 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2942586880/0xaf645000 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.010 edgeCostMax=3.411 edgeCostAvg=1.141 edgeSrcClasses=[3:13] edgeDstClasses=[3:12,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.522 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.135 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.863 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=1.869 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=1.559 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.663 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>3 cost=1.372 ret=0x44f457 cur=0x100000a00003a dst=0x100000a000039]
|
||||||
|
2026-06-21 03:15:44.144 +58144ms hook GPSRouteProducer result call=38 value=0x42ae6120 out_u0c=16/0x10 out_u1c=3/0x3 out_u20=2934307264/0xaee5f9c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.110 edgeCostMax=2.922 edgeCostAvg=0.980 edgeSrcClasses=[3:10,5:10,15:6] edgeDstClasses=[3:9,5:11,15:5,invalid:1] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=0.498 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=2.176 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.377 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:3>3 cost=0.985 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;5:3>3 cost=1.684 ret=0x44f457 cur=0x100000c90008b dst=0x100000c90008a;6:3>3 cost=1.722 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;7:3>3 cost=0.544 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900088]
|
||||||
|
2026-06-21 03:15:44.144 +58144ms hook GPSRouteProducer 0x44cc7c call=45 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1363.68,-718.749,7.7246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1086247168/0x40bed100 query_ptr98=0 query_ptra0=0 query_flagsa8=3091059984/0xb83dd510 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=38 startHandle=0x100000ab00087 targetHandle=0x100000c8000b3 graph=0x1a1826a30 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1289.4,8.1,-720.458) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=44 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=39 startHandle=0x100000ab00135 targetHandle=0x100000ab0016b graph=0x1a1826950 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1317.22,8.5,-682.448) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=43 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.144 +58144ms hook GPSSearch 0x44f054 call=36 startHandle=0x100000a5000ca targetHandle=0x100000a500184 graph=0x1a1826b10 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1352.09,7.9,-720.273) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=42 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=49 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1299.16,-707.978,7.59428,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1163727616/0x455d1300 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=40 graph=0x591db1080 query=0x79d7e330 outResult=0x79d7e490 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1404.9,-742.578,11.7625,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=48 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1371.03,-718.822,7.73581,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1091473664/0x410e9100 query_ptr98=0 query_ptra0=0 query_flagsa8=3167631696/0xbcce3950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer 0x44cc7c call=46 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1327.42,-733.114,7.83008,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1154922752/0x44d6b900 query_ptr98=0 query_ptra0=0 query_flagsa8=3305876656/0xc50bacb0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSSearch 0x44f054 call=40 startHandle=0x100000a00006d targetHandle=0x100000a0000ce graph=0x1a1826790 startPoint=(-1379.83,9.1,-725) targetPoint=(-1375.52,7.76062,-718.635) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=47 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.145 +58145ms hook GPSRouteProducer result call=41 value=0x42ae6120 out_u0c=9/0x9 out_u1c=3/0x3 out_u20=2920854080/0xae18b240 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=36 edgeCostMin=0.101 edgeCostMax=9.476 edgeCostAvg=1.754 edgeSrcClasses=[3:29,5:7] edgeDstClasses=[3:26,5:9,invalid:1] edgeRetRvas=[0x44f457:35,0x44f629:1] edgeSamples=[0:3>3 cost=0.344 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.514 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab0015c;4:3>3 cost=0.975 ret=0x44f457 cur=0x100000ab00164 dst=0x100000ab00160;5:3>3 cost=1.692 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;6:3>3 cost=0.399 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;7:3>3 cost=0.600 ret=0x44f457 cur=0x100000ab00160 dst=0x100000ab0015e]
|
||||||
|
2026-06-21 03:15:44.146 +58146ms hook GPSRouteProducer 0x44cc7c call=39 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1362.05,-655.586,5.84315,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1065826816/0x3f873a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.146 +58146ms hook GPSRouteProducer result call=26 value=0x42ae6120 out_u0c=23/0x17 out_u1c=3/0x3 out_u20=2939520608/0xaf358660 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=64 edgeCostMin=0.017 edgeCostMax=15.336 edgeCostAvg=1.491 edgeSrcClasses=[3:64] edgeDstClasses=[3:63,invalid:1] edgeRetRvas=[0x44f457:63,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.404 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.017 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.484 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.087 ret=0x44f457 cur=0x1000009b000d6 dst=0x1000009b000d7;5:3>3 cost=0.247 ret=0x44f457 cur=0x1000009b000d7 dst=0x1000009b000dc;6:3>3 cost=1.645 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000d3;7:3>3 cost=0.345 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000e0]
|
||||||
|
2026-06-21 03:15:44.146 +58146ms hook GPSSearch 0x44f054 call=41 startHandle=0x100000a00005a targetHandle=0x100000a0000c9 graph=0x1a1826aa0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1363.68,7.72913,-718.749) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=45 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.147 +58147ms hook GPSEdgeCost 0x44f838 call=622 classCall=0 sourceClass=4 neighborClass=4 value=1.81103 multiplier=1 baseCost=1.81103 previousHandle=0x100000c900025 currentHandle=0x100000c900002 neighborHandle=0x100000ab0000a provider=0x79afc320 currentState=(-1294.35,7.8,-711.3) neighborState=(-1296,7.8,-712.05) previousSegment=0x15a09851a8 previousPoint=0x5b05947d4 previousPoint_adj=541 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=5 previousPoint_raw13=0x5 currentSegment=0x15a09851a8 currentPoint=0x5b0594518 currentPoint_adj=540 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=4 currentPoint_raw13=0x4 neighborSegment=0x15a0984578 neighborPoint=0x5b1276f28 neighborPoint_adj=847 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=4 neighborPoint_raw13=0x4 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.148 +58148ms hook GPSEdgeCost 0x44f838 call=618 classCall=0 sourceClass=1 neighborClass=1 value=0.843905 multiplier=1 baseCost=0.843905 previousHandle=0x100000a500158 currentHandle=0x100000a500153 neighborHandle=0x100000a500152 provider=0x31a2d0 currentState=(-1354.02,8.3875,-726.419) neighborState=(-1354.1,8.2,-725.6) previousSegment=0x15a0984308 previousPoint=0x5b10f6a14 previousPoint_adj=823 previousPoint_mask10=0x3 previousPoint_b12=0x3 previousPoint_class13=3 previousPoint_raw13=0x3 currentSegment=0x15a0984308 currentPoint=0x5b10f69b0 currentPoint_adj=811 currentPoint_mask10=0x3 currentPoint_b12=0x3 currentPoint_class13=1 currentPoint_raw13=0x1 neighborSegment=0x15a0984308 neighborPoint=0x5b10f699c neighborPoint_adj=808 neighborPoint_mask10=0x3 neighborPoint_b12=0x3 neighborPoint_class13=1 neighborPoint_raw13=0x1 ret_rva=0x44f457
|
||||||
|
2026-06-21 03:15:44.151 +58151ms hook GPSSearch result call=39 value=0x40000000 hasOutCount=1 outCount=17 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:7,5:33] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.152 +58152ms hook GPSSearch result call=38 value=0x40000000 hasOutCount=1 outCount=18 filterCalls=36 filterPass=36 filterFail=0 filterBase=0 filterFiltered=36 filterPassClasses=[3:4,4:16,5:10,15:6] filterFailClasses=[none] filterPassMaskBits=[0:36,1:36] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.153 +58153ms hook GPSRouteProducer 0x44cc7c call=51 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1412.26,-736.518,11.6958,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1088238848/0x40dd3500 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.155 +58155ms hook GPSRouteProducer 0x44cc7c call=50 graph=0x591db1080 query=0x795bdfc0 outResult=0x795be120 query_start00=(-1321.41,-683.25,8.22247,1) query_end10=(-1316.99,-675.387,8.22249,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.173 +58173ms hook GPSSearch result call=41 value=0x40000000 hasOutCount=1 outCount=85 filterCalls=297 filterPass=294 filterFail=3 filterBase=0 filterFiltered=297 filterPassClasses=[1:61,3:132,4:7,5:66,15:28] filterFailClasses=[12:3] filterPassMaskBits=[0:294,1:294] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.174 +58174ms hook GPSRouteProducer result call=44 value=0x42ae6120 out_u0c=19/0x13 out_u1c=13/0xd out_u20=3369592304/0xc8d7e5f0 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=37 edgeCostMin=0.039 edgeCostMax=3.927 edgeCostAvg=1.504 edgeSrcClasses=[3:4,4:14,5:13,15:6] edgeDstClasses=[3:4,4:16,5:10,15:6,invalid:1] edgeRetRvas=[0x44f457:36,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=2.655 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=1.970 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=0.168 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:15>15 cost=0.039 ret=0x44f457 cur=0x100000ab00063 dst=0x100000ab00062;5:15>15 cost=1.231 ret=0x44f457 cur=0x100000ab00063 dst=0x100000ab00064;6:15>15 cost=1.290 ret=0x44f457 cur=0x100000ab00062 dst=0x100000ab00061;7:15>5 cost=1.933 ret=0x44f457 cur=0x100000ab00062 dst=0x100000ab00028]
|
||||||
|
2026-06-21 03:15:44.178 +58178ms hook GPSSearch result call=36 value=0x40000000 hasOutCount=1 outCount=99 filterCalls=314 filterPass=311 filterFail=3 filterBase=0 filterFiltered=314 filterPassClasses=[1:61,3:131,4:8,5:83,15:28] filterFailClasses=[12:3] filterPassMaskBits=[0:311,1:311] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.178 +58178ms hook GPSRouteProducer 0x44cc7c call=52 graph=0x591db1080 query=0x79afdfc0 outResult=0x79afe120 query_start00=(-1299.25,-701.88,8.21674,1) query_end10=(-1309.3,-707.895,7.67538,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.178 +58178ms hook GPSSearch 0x44f054 call=43 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a18269c0 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1404.9,11.8,-742.578) outPath=0x79d7d4a0 outCount=0x79d7c1a0 provider=0x79d7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=40 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.178 +58178ms hook GPSRouteProducer result call=45 value=0x42ae6120 out_u0c=71/0x47 out_u1c=50/0x32 out_u20=2546540928/0x97c92180 out_u24=5/0x5 out_u2c=50/0x32 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=295 edgeCostMin=0.001 edgeCostMax=6.376 edgeCostAvg=1.012 edgeSrcClasses=[1:53,3:133,4:3,5:70,15:36] edgeDstClasses=[1:61,3:132,4:7,5:66,15:28,invalid:1] edgeRetRvas=[0x44f457:294,0x44f629:1] edgeSamples=[0:3>3 cost=0.478 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.025 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=3.092 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.001 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.001 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=5.318 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=0.080 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=5.512 ret=0x44f457 cur=0x100000a000062 dst=0x100000a00005e]
|
||||||
|
2026-06-21 03:15:44.180 +58180ms hook GPSSearch result call=40 value=0x40000000 hasOutCount=1 outCount=53 filterCalls=171 filterPass=169 filterFail=2 filterBase=0 filterFiltered=171 filterPassClasses=[3:113,4:4,5:42,15:10] filterFailClasses=[12:2] filterPassMaskBits=[0:169,1:169] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.180 +58180ms hook GPSSearch result call=43 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.180 +58180ms hook GPSSearch 0x44f054 call=44 startHandle=0x100000a000073 targetHandle=0x100000a0000be graph=0x1a18268e0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1371.03,7.79895,-718.822) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=48 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.180 +58180ms hook GPSSearch 0x44f054 call=42 startHandle=0x100000c900081 targetHandle=0x100000ab0002a graph=0x1a1826870 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1299.16,7.79694,-707.978) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=49 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.180 +58180ms hook GPSRouteProducer result call=47 value=0x42ae6120 out_u0c=44/0x2c out_u1c=29/0x1d out_u20=2546537344/0x97c91380 out_u24=5/0x5 out_u2c=29/0x1d out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=170 edgeCostMin=0.000 edgeCostMax=5.974 edgeCostAvg=1.178 edgeSrcClasses=[3:112,4:3,5:43,15:12] edgeDstClasses=[3:113,4:4,5:42,15:10,invalid:1] edgeRetRvas=[0x44f457:169,0x44f629:1] edgeSamples=[0:3>3 cost=3.398 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=1.703 ret=0x44f457 cur=0x100000a00006e dst=0x100000a000073;3:3>3 cost=1.316 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;4:3>3 cost=0.842 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=0.450 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=2.586 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=0.088 ret=0x44f457 cur=0x100000a000072 dst=0x100000a000071]
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer result call=42 value=0x42ae6120 out_u0c=87/0x57 out_u1c=62/0x3e out_u20=2546544992/0x97c93160 out_u24=5/0x5 out_u2c=62/0x3e out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=312 edgeCostMin=0.006 edgeCostMax=6.289 edgeCostAvg=1.091 edgeSrcClasses=[1:53,3:133,4:3,5:87,15:36] edgeDstClasses=[1:61,3:131,4:8,5:83,15:28,invalid:1] edgeRetRvas=[0x44f457:311,0x44f629:1] edgeSamples=[0:3>3 cost=0.440 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.180 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=0.195 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c3;4:3>3 cost=2.839 ret=0x44f457 cur=0x100000a5000c9 dst=0x100000a5000c6;5:3>3 cost=0.700 ret=0x44f457 cur=0x100000a5000c3 dst=0x100000a5000c0;6:3>3 cost=0.101 ret=0x44f457 cur=0x100000a5000c0 dst=0x100000a5000be;7:3>3 cost=0.082 ret=0x44f457 cur=0x100000a5000be dst=0x100000a5000bd]
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=45 startHandle=0x100000a2000ea targetHandle=0x100000a20014d graph=0x1a1826950 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1362.05,6.1,-655.586) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=39 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=46 startHandle=0x100000aa0000e targetHandle=0x100000aa0012c graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1327.42,8.02156,-733.114) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=46 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer result call=40 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.158 edgeCostMax=5.023 edgeCostAvg=2.022 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.158 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.412 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.173 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=5.023 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=3.083 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=0.925 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSSearch 0x44f054 call=49 startHandle=0x100000ab00087 targetHandle=0x100000ab00031 graph=0x1a1826790 startPoint=(-1299.26,8.5,-702.215) targetPoint=(-1309.3,7.78616,-707.895) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=52 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.181 +58181ms hook GPSRouteProducer 0x44cc7c call=53 graph=0x591db1080 query=0x79bfdfc0 outResult=0x79bfe120 query_start00=(-1371.98,-724.399,8.99951,1) query_end10=(-1366.04,-727.827,9.03092,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.182 +58182ms hook GPSSearch 0x44f054 call=47 startHandle=0x1000009b00100 targetHandle=0x1000009b00076 graph=0x1a1826aa0 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1412.26,11.8,-736.518) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=51 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.182 +58182ms hook GPSSearch 0x44f054 call=48 startHandle=0x100000ab00166 targetHandle=0x100000ac0000b graph=0x1a1826b10 startPoint=(-1321.41,8.5,-683.25) targetPoint=(-1316.99,8.5,-675.387) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=50 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.182 +58182ms hook GPSRouteProducer result call=43 value=0x42ae6120 out_u0c=15/0xf out_u1c=8/0x8 out_u20=2546523296/0x97c8dca0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=12.947 edgeCostAvg=1.926 edgeSrcClasses=[3:8,5:33] edgeDstClasses=[3:7,5:33,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:5>5 cost=0.296 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=2.136 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=0.487 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.083 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;4:5>5 cost=5.048 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;5:5>5 cost=0.991 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;6:5>5 cost=0.307 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;7:5>5 cost=0.353 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f]
|
||||||
|
2026-06-21 03:15:44.184 +58184ms hook GPSSearch result call=47 value=0x40000000 hasOutCount=1 outCount=20 filterCalls=30 filterPass=30 filterFail=0 filterBase=0 filterFiltered=30 filterPassClasses=[3:30] filterFailClasses=[none] filterPassMaskBits=[0:30,1:30] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.185 +58185ms hook GPSSearch result call=42 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=29 filterPass=29 filterFail=0 filterBase=0 filterFiltered=29 filterPassClasses=[3:8,4:3,5:10,15:8] filterFailClasses=[none] filterPassMaskBits=[0:29,1:29] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.186 +58186ms hook GPSRouteProducer result call=51 value=0x42ae6120 out_u0c=17/0x11 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=31 edgeCostMin=0.008 edgeCostMax=4.487 edgeCostAvg=1.104 edgeSrcClasses=[3:31] edgeDstClasses=[3:30,invalid:1] edgeRetRvas=[0x44f457:30,0x44f629:1] edgeSamples=[0:3>3 cost=0.797 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.416 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.021 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.808 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;4:3>3 cost=1.102 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;5:3>3 cost=1.363 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;6:3>3 cost=0.090 ret=0x44f457 cur=0x1000009b000fd dst=0x1000009b000fc;7:3>3 cost=0.125 ret=0x44f457 cur=0x1000009b000fc dst=0x1000009b000fb]
|
||||||
|
2026-06-21 03:15:44.186 +58186ms hook GPSSearch result call=45 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.186 +58186ms hook GPSRouteProducer 0x44cc7c call=54 graph=0x591db1080 query=0x797fdfc0 outResult=0x797fe120 query_start00=(-1379.83,-724.644,8.99467,1) query_end10=(-1385.37,-727.53,9.00245,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.186 +58186ms hook GPSSearch result call=48 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=12 filterPass=12 filterFail=0 filterBase=12 filterFiltered=0 filterPassClasses=[3:11,5:1] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.192 +58192ms hook GPSSearch result call=44 value=0x40000000 hasOutCount=1 outCount=59 filterCalls=194 filterPass=191 filterFail=3 filterBase=0 filterFiltered=194 filterPassClasses=[3:128,4:5,5:48,15:10] filterFailClasses=[12:3] filterPassMaskBits=[0:191,1:191] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.194 +58194ms hook GPSSearch result call=49 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=22 filterPass=22 filterFail=0 filterBase=22 filterFiltered=0 filterPassClasses=[3:9,5:6,15:7] filterFailClasses=[none] filterPassMaskBits=[0:22,1:22] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=56 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.38,-742.694,11.76,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108551680/0x42132800 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=55 graph=0x591db1080 query=0x31bf70 outResult=0x31c0d0 query_start00=(-1360.42,-724.971,8.96795,1) query_end10=(-1366.46,-727.82,9.03019,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=57 graph=0x591db1080 query=0x79e7dfc0 outResult=0x79e7e120 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.497,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer result call=48 value=0x42ae6120 out_u0c=50/0x32 out_u1c=32/0x20 out_u20=2546540480/0x97c91fc0 out_u24=5/0x5 out_u2c=32/0x20 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=192 edgeCostMin=0.001 edgeCostMax=6.291 edgeCostAvg=1.193 edgeSrcClasses=[3:127,4:3,5:50,15:12] edgeDstClasses=[3:128,4:5,5:48,15:10,invalid:1] edgeRetRvas=[0x44f457:191,0x44f629:1] edgeSamples=[0:3>3 cost=0.132 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=2.462 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.188 ret=0x44f457 cur=0x100000a00006e dst=0x100000a00006d;3:3>3 cost=3.874 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;4:3>3 cost=1.245 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;5:3>3 cost=1.584 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;6:3>3 cost=1.950 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;7:3>3 cost=0.120 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034]
|
||||||
|
2026-06-21 03:15:44.196 +58196ms hook GPSRouteProducer 0x44cc7c call=58 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1395.6,-724.792,7.86954,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1078353152/0x40465d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3301898000/0xc4cef710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=50 value=0x42ae6120 out_u0c=8/0x8 out_u1c=1/0x1 out_u20=2919653936/0xae066230 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.023 edgeCostMax=6.829 edgeCostAvg=2.366 edgeSrcClasses=[3:13] edgeDstClasses=[3:11,5:1,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00164;1:3>3 cost=2.438 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00163;2:3>3 cost=0.128 ret=0x44f457 cur=0x100000ab00166 dst=0x100000ab00168;3:3>3 cost=1.247 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0015b;4:3>3 cost=0.130 ret=0x44f457 cur=0x100000ab00168 dst=0x100000ab0016b;5:3>3 cost=3.012 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ac00006;6:3>3 cost=5.373 ret=0x44f457 cur=0x100000ab0016b dst=0x100000ab0013d;7:3>3 cost=3.861 ret=0x44f457 cur=0x100000ac00006 dst=0x100000ac00008]
|
||||||
|
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=49 value=0x42ae6120 out_u0c=14/0xe out_u1c=5/0x5 out_u20=2910684448/0xad7d8520 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=30 edgeCostMin=0.000 edgeCostMax=4.936 edgeCostAvg=1.394 edgeSrcClasses=[3:9,4:2,5:8,15:11] edgeDstClasses=[3:8,4:3,5:10,15:8,invalid:1] edgeRetRvas=[0x44f457:29,0x44f629:1] edgeSamples=[0:3>3 cost=1.205 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.043 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.765 ret=0x44f457 cur=0x100000c900082 dst=0x100000c900054;3:3>3 cost=0.591 ret=0x44f457 cur=0x100000c900082 dst=0x100000c900078;4:3>5 cost=1.466 ret=0x44f457 cur=0x100000c900078 dst=0x100000c900053;5:3>3 cost=0.093 ret=0x44f457 cur=0x100000c900078 dst=0x100000c900079;6:3>3 cost=0.389 ret=0x44f457 cur=0x100000c900079 dst=0x100000c90007e;7:3>4 cost=2.573 ret=0x44f457 cur=0x100000c90007e dst=0x100000c900080]
|
||||||
|
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=52 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2947823504/0xafb43790 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=23 edgeCostMin=0.001 edgeCostMax=5.157 edgeCostAvg=1.543 edgeSrcClasses=[3:12,5:7,15:4] edgeDstClasses=[3:9,5:6,15:7,invalid:1] edgeRetRvas=[0x44f457:22,0x44f629:1] edgeSamples=[0:3>3 cost=2.063 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00086;1:3>3 cost=0.270 ret=0x44f457 cur=0x100000ab00087 dst=0x100000ab00088;2:3>3 cost=0.116 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00090;3:3>15 cost=2.421 ret=0x44f457 cur=0x100000ab00088 dst=0x100000ab00063;4:3>3 cost=0.569 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab0008a;5:3>3 cost=0.620 ret=0x44f457 cur=0x100000ab00090 dst=0x100000ab00091;6:3>15 cost=1.972 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00065;7:3>3 cost=1.488 ret=0x44f457 cur=0x100000ab00091 dst=0x100000ab00092]
|
||||||
|
2026-06-21 03:15:44.197 +58197ms hook GPSRouteProducer result call=39 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2964919152/0xb0b91370 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.222 edgeCostMax=2.889 edgeCostAvg=1.439 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.305 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.222 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.889 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.278 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>255 cost=1.078 ret=0x44f629 cur=0x100000a20014d dst=0x0]
|
||||||
|
2026-06-21 03:15:44.203 +58203ms hook GPSSearch result call=46 value=0x40000000 hasOutCount=1 outCount=57 filterCalls=269 filterPass=269 filterFail=0 filterBase=0 filterFiltered=269 filterPassClasses=[3:215,5:23,15:31] filterFailClasses=[none] filterPassMaskBits=[0:269,1:269] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.203 +58203ms hook GPSRouteProducer 0x44cc7c call=60 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.25,-719.491,7.66205,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157580800/0x44ff4800 query_ptr98=0 query_ptra0=0 query_flagsa8=3117119984/0xb9cb79f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.203 +58203ms hook GPSRouteProducer 0x44cc7c call=62 graph=0x591db1080 query=0x79afe330 outResult=0x79afe490 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1317.47,-664.358,8.22216,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.203 +58203ms hook GPSSearch 0x44f054 call=50 startHandle=0x100000a00005a targetHandle=0x100000a00006c graph=0x1a18269c0 startPoint=(-1371.98,9.1,-724.8) targetPoint=(-1366.04,9.1,-727.827) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=53 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.203 +58203ms hook GPSSearch 0x44f054 call=51 startHandle=0x100000a00006d targetHandle=0x100000a00004e graph=0x1a1826950 startPoint=(-1379.83,9.1,-725) targetPoint=(-1385.37,9.1,-727.53) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=54 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer 0x44cc7c call=59 graph=0x591db1080 query=0x796bdfc0 outResult=0x796be120 query_start00=(-1378.5,-724.644,8.99467,1) query_end10=(-1372.54,-727.726,9.01972,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer 0x44cc7c call=63 graph=0x591db1080 query=0x795be330 outResult=0x795be490 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1282.04,-707.794,7.65242,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.204 +58204ms hook GPSSearch 0x44f054 call=56 startHandle=0x100000c900081 targetHandle=0x100000c80009b graph=0x1a1826a30 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.25,8.1,-719.491) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=60 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.204 +58204ms hook GPSSearch 0x44f054 call=53 startHandle=0x100000a5000ca targetHandle=0x100000a00006c graph=0x1a18268e0 startPoint=(-1360.42,9.1,-724.971) targetPoint=(-1366.46,9.1,-727.82) outPath=0x31b0e0 outCount=0x319de0 provider=0x31adf0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=55 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.204 +58204ms hook GPSRouteProducer result call=46 value=0x42ae6120 out_u0c=53/0x35 out_u1c=38/0x26 out_u20=2562709072/0x98bfd650 out_u24=5/0x5 out_u2c=38/0x26 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=270 edgeCostMin=0.008 edgeCostMax=11.254 edgeCostAvg=1.266 edgeSrcClasses=[3:216,5:23,15:31] edgeDstClasses=[3:215,5:23,15:31,invalid:1] edgeRetRvas=[0x44f457:269,0x44f629:1] edgeSamples=[0:3>3 cost=1.637 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=1.966 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=2.171 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=1.167 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.503 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.117 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.148 ret=0x44f457 cur=0x100000aa0000a dst=0x100000aa00008;7:3>3 cost=0.092 ret=0x44f457 cur=0x100000aa00008 dst=0x100000aa00007]
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=54 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a1826b10 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.497) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=57 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=57 startHandle=0x100000ac0007b targetHandle=0x100000ac0004e graph=0x1a1826aa0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1317.47,8.5,-664.358) outPath=0x79afd4a0 outCount=0x79afc1a0 provider=0x79afd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=62 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSSearch 0x44f054 call=52 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826790 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.38,11.8,-742.694) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=56 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSSearch result call=50 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=9 filterFiltered=0 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSSearch result call=51 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.205 +58205ms hook GPSRouteProducer 0x44cc7c call=61 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1352.38,-655.817,7.80187,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3254779344/0xc1fffdd0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=57 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=54 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.206 +58206ms hook GPSSearch 0x44f054 call=55 startHandle=0x1000009b00100 targetHandle=0x1000009b001fa graph=0x1a1826870 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1395.6,7.9,-724.792) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=58 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=52 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.206 +58206ms hook GPSSearch result call=53 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.207 +58207ms hook GPSRouteProducer result call=53 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2949023280/0xafc68630 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.013 edgeCostMax=4.194 edgeCostAvg=1.390 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.390 ret=0x44f457 cur=0x100000a00005a dst=0x100000a00005b;1:3>3 cost=0.193 ret=0x44f457 cur=0x100000a00005b dst=0x100000a00005c;2:3>3 cost=2.166 ret=0x44f457 cur=0x100000a00005c dst=0x100000a000059;3:3>3 cost=0.013 ret=0x44f457 cur=0x100000a00005c dst=0x100000a00005d;4:3>3 cost=0.017 ret=0x44f457 cur=0x100000a00005d dst=0x100000a000061;5:3>3 cost=4.194 ret=0x44f457 cur=0x100000a000061 dst=0x100000a00006b;6:3>3 cost=2.899 ret=0x44f457 cur=0x100000a000061 dst=0x100000a000062;7:3>3 cost=2.162 ret=0x44f457 cur=0x100000a00006b dst=0x100000a00006a]
|
||||||
|
2026-06-21 03:15:44.211 +58211ms hook GPSRouteProducer result call=56 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.131 edgeCostMax=4.925 edgeCostAvg=2.027 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.355 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.131 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.925 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.855 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.394 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=55 value=0x42ae6120 out_u0c=7/0x7 out_u1c=5/0x5 out_u20=2251127744/0x862d7bc0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.190 edgeCostMax=4.452 edgeCostAvg=1.651 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.423 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a00002d;1:3>3 cost=0.190 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000c9;2:3>3 cost=4.148 ret=0x44f457 cur=0x100000a5000ca dst=0x100000a5000cb;3:3>3 cost=1.011 ret=0x44f457 cur=0x100000a00002d dst=0x100000a000029;4:3>3 cost=1.957 ret=0x44f457 cur=0x100000a00002d dst=0x100000a00002f;5:3>3 cost=0.825 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002e;6:3>3 cost=4.452 ret=0x44f457 cur=0x100000a00002f dst=0x100000a00002b;7:3>3 cost=1.600 ret=0x44f457 cur=0x100000a00002e dst=0x100000a00002c]
|
||||||
|
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=54 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2945538064/0xaf915810 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.289 edgeCostMax=2.386 edgeCostAvg=1.411 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.905 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00004b;1:3>3 cost=2.386 ret=0x44f457 cur=0x100000a00006d dst=0x100000a00006e;2:3>3 cost=0.289 ret=0x44f457 cur=0x100000a00004b dst=0x100000a00004c;3:3>3 cost=1.406 ret=0x44f457 cur=0x100000a00004c dst=0x100000a000044;4:3>3 cost=2.241 ret=0x44f457 cur=0x100000a00004c dst=0x100000a00004d;5:3>3 cost=0.344 ret=0x44f457 cur=0x100000a00004d dst=0x100000a00004e;6:3>255 cost=1.306 ret=0x44f629 cur=0x100000a00004e dst=0x0]
|
||||||
|
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=62 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2948588256/0xafbfe2e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.089 edgeCostMax=1.182 edgeCostAvg=0.728 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.640 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.859 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.089 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.182 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.058 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.228 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=1.037 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
|
||||||
|
2026-06-21 03:15:44.219 +58219ms hook GPSRouteProducer result call=57 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2952673984/0xaffe3ac0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.727 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.265 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.220 +58220ms hook GPSSearch result call=56 value=0x40000000 hasOutCount=1 outCount=19 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:3,4:16,5:15,15:6] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.220 +58220ms hook GPSRouteProducer 0x44cc7c call=64 graph=0x591db1080 query=0x794bdfc0 outResult=0x794be120 query_start00=(-1323.03,-743.097,11.7845,1) query_end10=(-1320.49,-738.197,11.8735,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer 0x44cc7c call=65 graph=0x591db1080 query=0x79bfe330 outResult=0x79bfe490 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.69,-649.652,7.78,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer result call=60 value=0x42ae6120 out_u0c=20/0x14 out_u1c=11/0xb out_u20=3395003184/0xca5ba330 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=4.668 edgeCostAvg=1.413 edgeSrcClasses=[3:4,4:14,5:17,15:6] edgeDstClasses=[3:3,4:16,5:15,15:6,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:3>3 cost=0.863 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=1.713 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.977 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:5>5 cost=0.169 ret=0x44f457 cur=0x100000c900056 dst=0x100000c900055;5:5>5 cost=0.693 ret=0x44f457 cur=0x100000c900056 dst=0x100000c90005b;6:5>15 cost=0.047 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900048;7:5>5 cost=1.502 ret=0x44f457 cur=0x100000c900055 dst=0x100000c900054]
|
||||||
|
2026-06-21 03:15:44.222 +58222ms hook GPSRouteProducer 0x44cc7c call=69 graph=0x591db1080 query=0x79e7e330 outResult=0x79e7e490 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1399.86,-760.74,11.7551,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.223 +58223ms hook GPSRouteProducer 0x44cc7c call=66 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1411.57,-737.015,11.7018,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1064156160/0x3f6dbc00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.223 +58223ms hook GPSRouteProducer 0x44cc7c call=67 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.9,-659.338,8.22519,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1053968896/0x3ed24a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.224 +58224ms hook GPSRouteProducer 0x44cc7c call=68 graph=0x591db1080 query=0x797fe330 outResult=0x797fe490 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1411.03,-737.292,11.7055,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.224 +58224ms hook GPSRouteProducer 0x44cc7c call=70 graph=0x591db1080 query=0x793bdfc0 outResult=0x793be120 query_start00=(-1289.12,-702.234,8.20667,1) query_end10=(-1279.16,-708.142,7.66219,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.227 +58227ms hook GPSSearch result call=55 value=0x40000000 hasOutCount=1 outCount=68 filterCalls=382 filterPass=378 filterFail=4 filterBase=0 filterFiltered=382 filterPassClasses=[1:16,3:322,4:6,5:1,15:33] filterFailClasses=[12:4] filterPassMaskBits=[0:378,1:378] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.227 +58227ms hook GPSSearch 0x44f054 call=62 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a18268e0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.69,7.9,-649.652) outPath=0x79bfd4a0 outCount=0x79bfc1a0 provider=0x79bfd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=65 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.227 +58227ms hook GPSRouteProducer 0x44cc7c call=71 graph=0x591db1080 query=0x31c2e0 outResult=0x31c440 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.12,-647.77,5.80266,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=60 startHandle=0x100000a2000ea targetHandle=0x100000a700124 graph=0x1a1826aa0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1352.38,7.9,-655.817) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=61 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.228 +58228ms hook GPSRouteProducer result call=58 value=0x42ae6120 out_u0c=53/0x35 out_u1c=14/0xe out_u20=2504917040/0x954e0030 out_u24=5/0x5 out_u2c=14/0xe out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=379 edgeCostMin=0.002 edgeCostMax=13.610 edgeCostAvg=1.110 edgeSrcClasses=[1:14,3:329,15:36] edgeDstClasses=[1:16,3:322,4:6,5:1,15:33,invalid:1] edgeRetRvas=[0x44f457:378,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.544 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.011 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.952 ret=0x44f457 cur=0x1000009b00102 dst=0x1000009b00101;4:3>3 cost=2.169 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b000fd;5:3>3 cost=0.507 ret=0x44f457 cur=0x1000009b00101 dst=0x1000009b00121;6:3>3 cost=0.343 ret=0x44f457 cur=0x1000009b00121 dst=0x1000009b00124;7:3>3 cost=0.573 ret=0x44f457 cur=0x1000009b00124 dst=0x1000009b00115]
|
||||||
|
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=61 startHandle=0x100000aa0000e targetHandle=0x100000aa00034 graph=0x1a1826a30 startPoint=(-1322.7,11.8,-743.097) targetPoint=(-1320.49,11.8,-738.197) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=64 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.228 +58228ms hook GPSSearch 0x44f054 call=58 startHandle=0x100000a000073 targetHandle=0x100000a000062 graph=0x1a18269c0 startPoint=(-1378.5,9.1,-725) targetPoint=(-1372.54,9.1,-727.726) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=59 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.229 +58229ms hook GPSSearch 0x44f054 call=63 startHandle=0x1000009a00275 targetHandle=0x1000009a00275 graph=0x1a1826790 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1399.86,11.9467,-760.74) outPath=0x79e7d4a0 outCount=0x79e7c1a0 provider=0x79e7d1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=69 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.229 +58229ms hook GPSSearch 0x44f054 call=64 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826b10 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1411.57,11.8,-737.015) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=66 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.229 +58229ms hook GPSSearch result call=62 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.229 +58229ms hook GPSSearch result call=60 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=21 filterPass=21 filterFail=0 filterBase=0 filterFiltered=21 filterPassClasses=[3:16,15:5] filterFailClasses=[none] filterPassMaskBits=[0:21,1:21] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.230 +58230ms hook GPSSearch 0x44f054 call=65 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826870 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1411.03,11.8,-737.292) outPath=0x797fd4a0 outCount=0x797fc1a0 provider=0x797fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=68 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.230 +58230ms hook GPSSearch 0x44f054 call=59 startHandle=0x100000c900087 targetHandle=0x100000c900032 graph=0x1a1826950 startPoint=(-1285,8.4,-702.7) targetPoint=(-1282.04,8.0254,-707.794) outPath=0x795bd4a0 outCount=0x795bc1a0 provider=0x795bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=63 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=61 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=64 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.230 +58230ms hook GPSSearch result call=63 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.231 +58231ms hook GPSSearch result call=65 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.232 +58232ms hook GPSSearch result call=59 value=0x40000000 hasOutCount=1 outCount=12 filterCalls=18 filterPass=18 filterFail=0 filterBase=18 filterFiltered=0 filterPassClasses=[3:5,4:1,5:7,15:5] filterFailClasses=[none] filterPassMaskBits=[0:18,1:18] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.232 +58232ms hook GPSRouteProducer result call=63 value=0x42ae6120 out_u0c=13/0xd out_u1c=4/0x4 out_u20=2920632048/0xae154ef0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=19 edgeCostMin=0.026 edgeCostMax=2.417 edgeCostAvg=0.825 edgeSrcClasses=[3:7,4:1,5:6,15:5] edgeDstClasses=[3:5,4:1,5:7,15:5,invalid:1] edgeRetRvas=[0x44f457:18,0x44f629:1] edgeSamples=[0:3>3 cost=0.175 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.376 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=1.981 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.513 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=1.303 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=0.364 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:4>5 cost=0.026 ret=0x44f457 cur=0x100000c900069 dst=0x100000c900057]
|
||||||
|
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=66 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.032 edgeCostMax=4.425 edgeCostAvg=2.374 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=1.047 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.279 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.032 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.425 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=3.950 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=2.507 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=69 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2927861992/0xae83a0e8 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer 0x44cc7c call=72 graph=0x591db1080 query=0x799fdfc0 outResult=0x799fe120 query_start00=(-1397.27,-738.259,11.6256,1) query_end10=(-1404.01,-748.694,11.75,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.233 +58233ms hook GPSSearch 0x44f054 call=66 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a18268e0 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.12,6.1,-647.77) outPath=0x31b450 outCount=0x31a150 provider=0x31b160 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=71 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.233 +58233ms hook GPSRouteProducer result call=64 value=0x42ae6120 out_u0c=9/0x9 out_u1c=8/0x8 out_u20=2504906064/0x954dd550 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.167 edgeCostMax=3.731 edgeCostAvg=1.149 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=2.149 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000d;1:3>3 cost=0.515 ret=0x44f457 cur=0x100000aa0000e dst=0x100000aa0000f;2:3>3 cost=3.731 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00005;3:3>3 cost=0.210 ret=0x44f457 cur=0x100000aa0000f dst=0x100000aa00010;4:3>3 cost=1.386 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000a;5:3>3 cost=2.935 ret=0x44f457 cur=0x100000aa00010 dst=0x100000aa0000b;6:3>3 cost=0.423 ret=0x44f457 cur=0x100000aa0000b dst=0x100000aa00009;7:3>3 cost=0.370 ret=0x44f457 cur=0x100000aa00009 dst=0x100000aa00032]
|
||||||
|
2026-06-21 03:15:44.234 +58234ms hook GPSSearch 0x44f054 call=68 startHandle=0x100000ac0007b targetHandle=0x100000ac0007a graph=0x1a1826a30 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.9,8.5,-659.338) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=67 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer result call=65 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207904/0xb0342720 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.127 edgeCostMax=2.010 edgeCostAvg=1.082 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.127 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.667 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=0.525 ret=0x44f629 cur=0x100000a70017d dst=0x0]
|
||||||
|
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer result call=68 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=1.042 edgeCostMax=5.488 edgeCostAvg=2.555 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=1.042 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=1.881 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.808 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.234 +58234ms hook GPSRouteProducer 0x44cc7c call=73 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1275.04,-708.176,7.67619,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158910976/0x45139400 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.234 +58234ms hook GPSSearch result call=58 value=0x40000000 hasOutCount=1 outCount=9 filterCalls=12 filterPass=12 filterFail=0 filterBase=12 filterFiltered=0 filterPassClasses=[3:12] filterFailClasses=[none] filterPassMaskBits=[0:12,1:12] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.235 +58235ms hook GPSSearch 0x44f054 call=69 startHandle=0x1000009b00100 targetHandle=0x1000009a0037b graph=0x1a1826950 startPoint=(-1397.27,11.8,-738.259) targetPoint=(-1404.01,11.8,-748.694) outPath=0x799fd130 outCount=0x799fbe30 provider=0x799fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=72 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.235 +58235ms hook GPSSearch result call=66 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.235 +58235ms hook GPSRouteProducer 0x44cc7c call=75 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1400.95,-755.22,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1077136640/0x4033cd00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.235 +58235ms hook GPSSearch result call=68 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.235 +58235ms hook GPSRouteProducer result call=59 value=0x42ae6120 out_u0c=10/0xa out_u1c=6/0x6 out_u20=2942586880/0xaf645000 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=13 edgeCostMin=0.010 edgeCostMax=3.411 edgeCostAvg=1.141 edgeSrcClasses=[3:13] edgeDstClasses=[3:12,invalid:1] edgeRetRvas=[0x44f457:12,0x44f629:1] edgeSamples=[0:3>3 cost=2.451 ret=0x44f457 cur=0x100000a000073 dst=0x100000a00006e;1:3>3 cost=0.522 ret=0x44f457 cur=0x100000a000073 dst=0x100000a000075;2:3>3 cost=0.135 ret=0x44f457 cur=0x100000a000075 dst=0x100000a000074;3:3>3 cost=0.863 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000072;4:3>3 cost=1.869 ret=0x44f457 cur=0x100000a000074 dst=0x100000a000038;5:3>3 cost=1.559 ret=0x44f457 cur=0x100000a000038 dst=0x100000a000034;6:3>3 cost=1.663 ret=0x44f457 cur=0x100000a000038 dst=0x100000a00003a;7:3>3 cost=1.372 ret=0x44f457 cur=0x100000a00003a dst=0x100000a000039]
|
||||||
|
2026-06-21 03:15:44.236 +58236ms hook GPSRouteProducer 0x44cc7c call=76 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.15,-648.684,7.78455,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1102516480/0x41b71100 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.236 +58236ms hook GPSRouteProducer 0x44cc7c call=74 graph=0x591db1080 query=0x79d7e010 outResult=0x79d7e2b8 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.06,-742.561,11.76,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1112689408/0x42524b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3203105968/0xbeeb84b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.236 +58236ms hook GPSSearch 0x44f054 call=70 startHandle=0x100000c900087 targetHandle=0x100000c900038 graph=0x1a1826870 startPoint=(-1285,8.4,-702.7) targetPoint=(-1275.04,7.98098,-708.176) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=73 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.236 +58236ms hook GPSSearch 0x44f054 call=67 startHandle=0x100000c900081 targetHandle=0x100000c900034 graph=0x1a1826aa0 startPoint=(-1289.14,8.4,-702.576) targetPoint=(-1279.16,7.97771,-708.142) outPath=0x793bd130 outCount=0x793bbe30 provider=0x793bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=70 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.237 +58237ms hook GPSRouteProducer result call=61 value=0x42ae6120 out_u0c=15/0xf out_u1c=11/0xb out_u20=2635039312/0x9d0f8250 out_u24=5/0x5 out_u2c=11/0xb out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=22 edgeCostMin=0.039 edgeCostMax=2.797 edgeCostAvg=1.299 edgeSrcClasses=[3:17,15:5] edgeDstClasses=[3:16,15:5,invalid:1] edgeRetRvas=[0x44f457:21,0x44f629:1] edgeSamples=[0:3>3 cost=0.173 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.360 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.623 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=1.557 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.797 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>3 cost=2.588 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700128;6:3>3 cost=0.438 ret=0x44f457 cur=0x100000a700129 dst=0x100000a700127;7:3>15 cost=0.265 ret=0x44f457 cur=0x100000a700127 dst=0x100000a700106]
|
||||||
|
2026-06-21 03:15:44.239 +58239ms hook GPSSearch result call=70 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=44 filterPass=44 filterFail=0 filterBase=0 filterFiltered=44 filterPassClasses=[3:13,4:3,5:19,15:9] filterFailClasses=[none] filterPassMaskBits=[0:44,1:44] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.240 +58240ms hook GPSSearch result call=67 value=0x40000000 hasOutCount=1 outCount=15 filterCalls=25 filterPass=25 filterFail=0 filterBase=25 filterFiltered=0 filterPassClasses=[3:9,5:11,15:5] filterFailClasses=[none] filterPassMaskBits=[0:25,1:25] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.240 +58240ms hook GPSRouteProducer result call=73 value=0x42ae6120 out_u0c=13/0xd out_u1c=5/0x5 out_u20=2962952976/0xb09b1310 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=45 edgeCostMin=0.020 edgeCostMax=4.335 edgeCostAvg=1.127 edgeSrcClasses=[3:16,4:1,5:18,15:10] edgeDstClasses=[3:13,4:3,5:19,15:9,invalid:1] edgeRetRvas=[0x44f457:44,0x44f629:1] edgeSamples=[0:3>3 cost=0.106 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.032 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=2.079 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.546 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=0.804 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=1.307 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:3>3 cost=0.731 ret=0x44f457 cur=0x100000c900091 dst=0x100000c900090]
|
||||||
|
2026-06-21 03:15:44.240 +58240ms hook GPSRouteProducer 0x44cc7c call=80 graph=0x591db1080 query=0x798fdfc0 outResult=0x798fe120 query_start00=(-1364.13,-660.002,5.84337,1) query_end10=(-1362.05,-655.586,5.84315,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer result call=71 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250925024/0x862a63e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.102 edgeCostMax=2.511 edgeCostAvg=1.094 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.326 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.463 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.519 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.148 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.718 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.829 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.511 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.228 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
|
||||||
|
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer 0x44cc7c call=78 graph=0x591db1080 query=0x794be330 outResult=0x794be490 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.03,-648.787,8.24185,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer result call=67 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2948431424/0xafbd7e40 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.016 edgeCostMax=2.911 edgeCostAvg=1.179 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.673 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.687 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=1.607 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;3:3>255 cost=0.016 ret=0x44f629 cur=0x100000ac0007a dst=0x0;4:3>3 cost=2.911 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079]
|
||||||
|
2026-06-21 03:15:44.241 +58241ms hook GPSSearch 0x44f054 call=71 startHandle=0x1000009a00275 targetHandle=0x1000009a00312 graph=0x1a18268e0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1400.95,11.8,-755.22) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=75 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.241 +58241ms hook GPSRouteProducer 0x44cc7c call=81 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1295.04,-708.012,7.60828,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1162465280/0x4549d000 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=73 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a18269c0 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.06,11.8,-742.561) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=74 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.242 +58242ms hook GPSRouteProducer 0x44cc7c call=82 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.97,-653.309,5.84667,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098264320/0x41762f00 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=72 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a1826a30 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.15,7.9,-648.684) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=76 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.242 +58242ms hook GPSSearch result call=71 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.242 +58242ms hook GPSSearch 0x44f054 call=76 startHandle=0x100000c900087 targetHandle=0x100000c900026 graph=0x1a1826790 startPoint=(-1285,8.4,-702.7) targetPoint=(-1295.04,7.84026,-708.012) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=81 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSSearch result call=73 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer 0x44cc7c call=83 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.92,-663.988,8.22214,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1010583040/0x3c3c4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer result call=75 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2927862064/0xae83a130 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.262 edgeCostMax=4.933 edgeCostAvg=1.487 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=4.933 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.317 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.481 ret=0x44f457 cur=0x1000009a00273 dst=0x1000009a00272;4:3>3 cost=0.756 ret=0x44f457 cur=0x1000009a00272 dst=0x1000009a00313;5:3>3 cost=1.383 ret=0x44f457 cur=0x1000009a00313 dst=0x1000009a00312;6:3>255 cost=0.262 ret=0x44f629 cur=0x1000009a00312 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSRouteProducer 0x44cc7c call=77 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1406,-741.425,11.7515,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101859072/0x41ad0900 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSSearch 0x44f054 call=74 startHandle=0x100000a2000ea targetHandle=0x100000a20014d graph=0x1a1826aa0 startPoint=(-1364.13,6.1,-660.002) targetPoint=(-1362.05,6.1,-655.586) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=80 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.243 +58243ms hook GPSSearch result call=72 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.244 +58244ms hook GPSSearch 0x44f054 call=75 startHandle=0x100000ac000c4 targetHandle=0x100000ac00022 graph=0x1a1826870 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.03,8.5,-648.787) outPath=0x794bd4a0 outCount=0x794bc1a0 provider=0x794bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=78 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.244 +58244ms hook GPSSearch result call=69 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=63 filterPass=63 filterFail=0 filterBase=63 filterFiltered=0 filterPassClasses=[3:63] filterFailClasses=[none] filterPassMaskBits=[0:63,1:63] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.244 +58244ms hook GPSRouteProducer 0x44cc7c call=79 graph=0x591db1080 query=0x796be330 outResult=0x796be490 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1358.52,-648.296,6.64535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.244 +58244ms hook GPSRouteProducer result call=76 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207976/0xb0342768 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.114 edgeCostMax=2.010 edgeCostAvg=1.343 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.114 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.608 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=1.641 ret=0x44f629 cur=0x100000a70017d dst=0x0]
|
||||||
|
2026-06-21 03:15:44.245 +58245ms hook GPSSearch result call=76 value=0x40000000 hasOutCount=1 outCount=16 filterCalls=33 filterPass=33 filterFail=0 filterBase=0 filterFiltered=33 filterPassClasses=[3:11,5:14,15:8] filterFailClasses=[none] filterPassMaskBits=[0:33,1:33] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.245 +58245ms hook GPSSearch result call=75 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.245 +58245ms hook GPSSearch 0x44f054 call=77 startHandle=0x100000a200147 targetHandle=0x100000a20011b graph=0x1a1826b10 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.97,6.1,-653.309) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=82 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.245 +58245ms hook GPSRouteProducer result call=72 value=0x42ae6120 out_u0c=23/0x17 out_u1c=3/0x3 out_u20=2939520608/0xaf358660 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=64 edgeCostMin=0.017 edgeCostMax=15.336 edgeCostAvg=1.491 edgeSrcClasses=[3:64] edgeDstClasses=[3:63,invalid:1] edgeRetRvas=[0x44f457:63,0x44f629:1] edgeSamples=[0:3>3 cost=1.037 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000fe;1:3>3 cost=1.404 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b000ff;2:3>3 cost=0.017 ret=0x44f457 cur=0x1000009b00100 dst=0x1000009b00102;3:3>3 cost=0.484 ret=0x44f457 cur=0x1000009b000ff dst=0x1000009b000d6;4:3>3 cost=0.087 ret=0x44f457 cur=0x1000009b000d6 dst=0x1000009b000d7;5:3>3 cost=0.247 ret=0x44f457 cur=0x1000009b000d7 dst=0x1000009b000dc;6:3>3 cost=1.645 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000d3;7:3>3 cost=0.345 ret=0x44f457 cur=0x1000009b000dc dst=0x1000009b000e0]
|
||||||
|
2026-06-21 03:15:44.246 +58246ms hook GPSRouteProducer 0x44cc7c call=84 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1392.75,-768.825,11.7477,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1080343296/0x4064bb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.246 +58246ms hook GPSSearch 0x44f054 call=78 startHandle=0x100000ac0007b targetHandle=0x100000ac0004e graph=0x1a18269c0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.92,8.5,-663.988) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=83 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.246 +58246ms hook GPSSearch result call=74 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.246 +58246ms hook GPSRouteProducer result call=78 value=0x42ae6120 out_u0c=8/0x8 out_u1c=2/0x2 out_u20=2940799888/0xaf490b90 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.051 edgeCostMax=4.666 edgeCostAvg=1.562 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.098 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.873 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.156 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=3.255 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=1.721 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.182 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=3.252 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
|
||||||
|
2026-06-21 03:15:44.246 +58246ms hook GPSSearch 0x44f054 call=81 startHandle=0x1000009a00275 targetHandle=0x1000009f00028 graph=0x1a1826870 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1392.75,11.8,-768.825) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=84 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.247 +58247ms hook GPSSearch result call=78 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.247 +58247ms hook GPSRouteProducer result call=70 value=0x42ae6120 out_u0c=16/0x10 out_u1c=3/0x3 out_u20=2934307264/0xaee5f9c0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=26 edgeCostMin=0.110 edgeCostMax=2.922 edgeCostAvg=0.980 edgeSrcClasses=[3:10,5:10,15:6] edgeDstClasses=[3:9,5:11,15:5,invalid:1] edgeRetRvas=[0x44f457:25,0x44f629:1] edgeSamples=[0:3>3 cost=0.498 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900089;1:3>3 cost=1.171 ret=0x44f457 cur=0x100000c900081 dst=0x100000c900082;2:3>5 cost=2.176 ret=0x44f457 cur=0x100000c900089 dst=0x100000c900056;3:3>3 cost=0.377 ret=0x44f457 cur=0x100000c900089 dst=0x100000c90008b;4:3>3 cost=0.985 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;5:3>3 cost=1.684 ret=0x44f457 cur=0x100000c90008b dst=0x100000c90008a;6:3>3 cost=1.722 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;7:3>3 cost=0.544 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900088]
|
||||||
|
2026-06-21 03:15:44.247 +58247ms hook GPSRouteProducer 0x44cc7c call=86 graph=0x591db1080 query=0x799fe330 outResult=0x799fe490 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1401.57,-751.518,11.7559,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.247 +58247ms hook GPSSearch result call=77 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer result call=83 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2948588256/0xafbfe2e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.117 edgeCostMax=1.336 edgeCostAvg=0.749 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.699 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=1.053 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.117 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.336 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.034 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.203 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=0.802 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
|
||||||
|
2026-06-21 03:15:44.248 +58248ms hook GPSSearch result call=81 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=15 filterPass=15 filterFail=0 filterBase=0 filterFiltered=15 filterPassClasses=[3:15] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer 0x44cc7c call=87 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.7,-645.733,8.24656,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1126840576/0x432a3900 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer 0x44cc7c call=88 graph=0x591db1080 query=0x79afe010 outResult=0x79afe2b8 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1325.47,-651.09,7.63476,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157933056/0x4504a800 query_ptr98=0 query_ptra0=0 query_flagsa8=3203256720/0xbeedd190 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.248 +58248ms hook GPSRouteProducer result call=80 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2964919296/0xb0b91400 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.222 edgeCostMax=2.889 edgeCostAvg=1.439 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.860 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a2000e9;1:3>3 cost=1.305 ret=0x44f457 cur=0x100000a2000ea dst=0x100000a20014c;2:3>3 cost=0.222 ret=0x44f457 cur=0x100000a20014c dst=0x100000a20014e;3:3>3 cost=2.889 ret=0x44f457 cur=0x100000a20014e dst=0x100000a700129;4:3>3 cost=2.278 ret=0x44f457 cur=0x100000a20014e dst=0x100000a20014d;5:3>255 cost=1.078 ret=0x44f629 cur=0x100000a20014d dst=0x0]
|
||||||
|
2026-06-21 03:15:44.249 +58249ms hook GPSSearch 0x44f054 call=82 startHandle=0x100000ac000c4 targetHandle=0x1000008f0001c graph=0x1a1826870 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.7,8.5,-645.733) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=87 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.249 +58249ms hook GPSRouteProducer result call=82 value=0x42ae6120 out_u0c=7/0x7 out_u1c=6/0x6 out_u20=2701653008/0xa107f410 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.143 edgeCostMax=2.169 edgeCostAvg=0.823 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.284 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.583 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=2.169 ret=0x44f457 cur=0x100000a20011f dst=0x100000a200118;3:3>3 cost=0.143 ret=0x44f457 cur=0x100000a20011f dst=0x100000a200120;4:3>3 cost=0.971 ret=0x44f457 cur=0x100000a200120 dst=0x100000a20011d;5:3>3 cost=1.646 ret=0x44f457 cur=0x100000a200120 dst=0x100000a20011e;6:3>3 cost=0.198 ret=0x44f457 cur=0x100000a20011e dst=0x100000a20011c;7:3>3 cost=1.080 ret=0x44f457 cur=0x100000a20011c dst=0x100000a20011b]
|
||||||
|
2026-06-21 03:15:44.249 +58249ms hook GPSSearch 0x44f054 call=80 startHandle=0x100000850004d targetHandle=0x100000a700177 graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1358.52,6.76975,-648.296) outPath=0x796bd4a0 outCount=0x796bc1a0 provider=0x796bd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=79 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer 0x44cc7c call=85 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.51,-655.106,7.78,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1090574592/0x4100d900 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer result call=81 value=0x42ae6120 out_u0c=16/0x10 out_u1c=1/0x1 out_u20=2919658256/0xae067310 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.063 edgeCostMax=2.103 edgeCostAvg=1.011 edgeSrcClasses=[3:13,5:11,15:10] edgeDstClasses=[3:11,5:14,15:8,invalid:1] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.051 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=0.507 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>5 cost=1.931 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90005a;3:3>3 cost=0.375 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90008a;4:3>3 cost=0.961 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;5:3>3 cost=1.273 ret=0x44f457 cur=0x100000c90008a dst=0x100000c90008b;6:3>3 cost=1.756 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;7:3>3 cost=0.706 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900089]
|
||||||
|
2026-06-21 03:15:44.250 +58250ms hook GPSSearch 0x44f054 call=79 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1406,11.8,-741.425) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=77 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.250 +58250ms hook GPSRouteProducer result call=84 value=0x42ae6120 out_u0c=11/0xb out_u1c=5/0x5 out_u20=2928671312/0xae8ffa50 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.261 edgeCostMax=6.139 edgeCostAvg=2.164 edgeSrcClasses=[3:16] edgeDstClasses=[3:15,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>3 cost=4.989 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.261 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.833 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271;4:3>3 cost=6.139 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00274;5:3>3 cost=0.643 ret=0x44f457 cur=0x1000009a00271 dst=0x1000009a001c9;6:3>3 cost=0.346 ret=0x44f457 cur=0x1000009a001c9 dst=0x1000009a001ca;7:3>3 cost=5.099 ret=0x44f457 cur=0x1000009a001ca dst=0x1000009a001c8]
|
||||||
|
2026-06-21 03:15:44.251 +58251ms hook GPSRouteProducer result call=74 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.156 edgeCostMax=4.985 edgeCostAvg=2.014 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.391 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.985 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.999 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.035 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.251 +58251ms hook GPSSearch 0x44f054 call=83 startHandle=0x100000ac0007b targetHandle=0x100000ac000b3 graph=0x1a1826b10 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1325.47,7.9,-651.09) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=88 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.251 +58251ms hook GPSRouteProducer 0x44cc7c call=92 graph=0x591db1080 query=0x79e7e010 outResult=0x79e7e2b8 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1392.34,-768.259,11.7477,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1132600832/0x43821e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3134072368/0xbace2630 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.251 +58251ms hook GPSSearch result call=79 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.251 +58251ms hook GPSSearch result call=80 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:7,15:4] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.252 +58252ms hook GPSRouteProducer result call=86 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.252 +58252ms hook GPSSearch result call=82 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=23 filterPass=23 filterFail=0 filterBase=0 filterFiltered=23 filterPassClasses=[3:23] filterFailClasses=[none] filterPassMaskBits=[0:23,1:23] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=94 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1402.25,-750.08,11.7625,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096790016/0x415fb000 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=89 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.18,-647.319,5.81129,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1095424768/0x414adb00 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.254 +58254ms hook GPSRouteProducer 0x44cc7c call=91 graph=0x591db1080 query=0x795be010 outResult=0x795be2b8 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1275.14,-720.575,7.67606,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158864640/0x4512df00 query_ptr98=0 query_ptra0=0 query_flagsa8=2817741552/0xa7f352f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer result call=77 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.749 edgeCostMax=5.488 edgeCostAvg=2.671 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.749 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=3.046 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.399 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=95 graph=0x591db1080 query=0x798fe330 outResult=0x798fe490 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1389.69,-788.318,11.7671,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=90 graph=0x591db1080 query=0x793be330 outResult=0x793be490 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1417.29,-757.138,11.7611,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer result call=79 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2918751904/0xadf89ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.336 edgeCostMax=3.323 edgeCostAvg=1.358 edgeSrcClasses=[3:7,15:5] edgeDstClasses=[3:7,15:4,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.240 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.638 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.725 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.462 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=1.043 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.336 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>15 cost=2.841 ret=0x44f457 cur=0x1000008a00010 dst=0x1000008a0000e]
|
||||||
|
2026-06-21 03:15:44.255 +58255ms hook GPSRouteProducer 0x44cc7c call=93 graph=0x591db1080 query=0x79d7dfc0 outResult=0x79d7e120 query_start00=(-1404.88,-737.984,11.6255,1) query_end10=(-1405.06,-742.561,11.76,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.256 +58256ms hook GPSRouteProducer result call=87 value=0x42ae6120 out_u0c=15/0xf out_u1c=4/0x4 out_u20=2923354656/0xae3eda20 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=24 edgeCostMin=0.050 edgeCostMax=16.803 edgeCostAvg=3.012 edgeSrcClasses=[3:24] edgeDstClasses=[3:23,invalid:1] edgeRetRvas=[0x44f457:23,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.256 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.772 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.267 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=4.055 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=0.678 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.050 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=1.444 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
|
||||||
|
2026-06-21 03:15:44.256 +58256ms hook GPSSearch result call=83 value=0x40000000 hasOutCount=1 outCount=25 filterCalls=119 filterPass=119 filterFail=0 filterBase=0 filterFiltered=119 filterPassClasses=[3:97,5:22] filterFailClasses=[none] filterPassMaskBits=[0:119,1:119] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.256 +58256ms hook GPSSearch 0x44f054 call=89 startHandle=0x1000009b00068 targetHandle=0x1000009b00076 graph=0x1a1826790 startPoint=(-1404.88,11.8,-737.984) targetPoint=(-1405.06,11.8,-742.561) outPath=0x79d7d130 outCount=0x79d7be30 provider=0x79d7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=93 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=87 startHandle=0x100000c900087 targetHandle=0x100000c80008a graph=0x1a1826950 startPoint=(-1285,8.4,-702.7) targetPoint=(-1275.14,8.04419,-720.575) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=91 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=88 startHandle=0x1000009e00235 targetHandle=0x1000009e00268 graph=0x1a18268e0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1389.69,11.8,-788.318) outPath=0x798fd4a0 outCount=0x798fc1a0 provider=0x798fd1b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=95 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=96 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1412.6,-736.783,11.6948,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1098953984/0x4180b500 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=97 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1361.94,-650.322,5.82954,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1075547392/0x401b8d00 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSRouteProducer 0x44cc7c call=98 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.88,-657.732,8.22771,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125106176/0x430fc200 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.257 +58257ms hook GPSSearch 0x44f054 call=86 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a1826870 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.18,6.1,-647.319) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=89 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.258 +58258ms hook GPSSearch 0x44f054 call=84 startHandle=0x100000a70017c targetHandle=0x100000a70013b graph=0x1a18269c0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.51,7.9,-655.106) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=85 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.258 +58258ms hook GPSSearch result call=89 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=88 value=0x42ae6120 out_u0c=21/0x15 out_u1c=13/0xd out_u20=3256082064/0xc213de90 out_u24=5/0x5 out_u2c=13/0xd out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=120 edgeCostMin=0.000 edgeCostMax=11.523 edgeCostAvg=1.397 edgeSrcClasses=[3:98,5:22] edgeDstClasses=[3:97,5:22,invalid:1] edgeRetRvas=[0x44f457:119,0x44f629:1] edgeSamples=[0:3>3 cost=0.821 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=1.328 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=0.172 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac00049;3:3>3 cost=1.572 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0003d;4:3>3 cost=1.036 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=1.896 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;6:3>3 cost=2.081 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079;7:3>3 cost=0.422 ret=0x44f457 cur=0x100000ac0007a dst=0x100000ac0008f]
|
||||||
|
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=94 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.258 +58258ms hook GPSRouteProducer result call=90 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.259 +58259ms hook GPSSearch 0x44f054 call=85 startHandle=0x1000009a00275 targetHandle=0x1000009f00028 graph=0x1a1826aa0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1392.34,11.8,-768.259) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7c320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=92 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=86 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=88 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.259 +58259ms hook GPSSearch result call=84 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=16 filterPass=16 filterFail=0 filterBase=0 filterFiltered=16 filterPassClasses=[3:16] filterFailClasses=[none] filterPassMaskBits=[0:16,1:16] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.260 +58260ms hook GPSRouteProducer result call=93 value=0x42ae6120 out_u0c=5/0x5 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.156 edgeCostMax=4.985 edgeCostAvg=2.014 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00060;1:3>3 cost=4.378 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b00064;2:3>3 cost=0.391 ret=0x44f457 cur=0x1000009b00068 dst=0x1000009b0006e;3:3>3 cost=0.156 ret=0x44f457 cur=0x1000009b0006e dst=0x1000009b00075;4:3>3 cost=4.985 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;5:3>3 cost=2.999 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;6:3>255 cost=1.035 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.260 +58260ms hook GPSSearch result call=85 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=15 filterPass=15 filterFail=0 filterBase=0 filterFiltered=15 filterPassClasses=[3:15] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer 0x44cc7c call=99 graph=0x591db1080 query=0x79afdfc0 outResult=0x79afe120 query_start00=(-1318.02,-661.355,8.22214,1) query_end10=(-1316.9,-659.338,8.22519,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer result call=89 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250920704/0x862a5300 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.301 edgeCostMax=2.193 edgeCostAvg=1.036 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.301 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.444 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.071 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.193 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.924 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.368 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.141 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.369 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
|
||||||
|
2026-06-21 03:15:44.261 +58261ms hook GPSSearch result call=87 value=0x40000000 hasOutCount=1 outCount=22 filterCalls=38 filterPass=38 filterFail=0 filterBase=0 filterFiltered=38 filterPassClasses=[3:5,4:16,5:12,15:5] filterFailClasses=[none] filterPassMaskBits=[0:38,1:38] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer 0x44cc7c call=100 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1398.71,-763.103,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096972544/0x41627900 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.261 +58261ms hook GPSRouteProducer result call=85 value=0x42ae6120 out_u0c=11/0xb out_u1c=8/0x8 out_u20=3256104832/0xc2143780 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=17 edgeCostMin=0.010 edgeCostMax=2.732 edgeCostAvg=0.799 edgeSrcClasses=[3:17] edgeDstClasses=[3:16,invalid:1] edgeRetRvas=[0x44f457:16,0x44f629:1] edgeSamples=[0:3>3 cost=0.104 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=2.732 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>3 cost=0.010 ret=0x44f457 cur=0x100000a70017a dst=0x100000a700174;4:3>3 cost=2.042 ret=0x44f457 cur=0x100000a700174 dst=0x100000a700171;5:3>3 cost=0.892 ret=0x44f457 cur=0x100000a700174 dst=0x100000a70016d;6:3>3 cost=0.149 ret=0x44f457 cur=0x100000a70016d dst=0x100000a70016c;7:3>3 cost=0.584 ret=0x44f457 cur=0x100000a70016c dst=0x100000a70012a]
|
||||||
|
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=91 startHandle=0x100000850004d targetHandle=0x100000a20011f graph=0x1a1826a30 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1361.94,6.1,-650.322) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=97 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.262 +58262ms hook GPSRouteProducer 0x44cc7c call=102 graph=0x591db1080 query=0x31bfc0 outResult=0x31c268 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1351.29,-649.414,7.78213,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1105293568/0x41e17100 query_ptr98=0 query_ptra0=0 query_flagsa8=2684461744/0xa001a2b0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.262 +58262ms hook GPSRouteProducer result call=91 value=0x42ae6120 out_u0c=23/0x17 out_u1c=12/0xc out_u20=3256111648/0xc2145220 out_u24=5/0x5 out_u2c=12/0xc out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=39 edgeCostMin=0.021 edgeCostMax=3.816 edgeCostAvg=1.263 edgeSrcClasses=[3:7,4:15,5:12,15:5] edgeDstClasses=[3:5,4:16,5:12,15:5,invalid:1] edgeRetRvas=[0x44f457:38,0x44f629:1] edgeSamples=[0:3>3 cost=0.182 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=1.080 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>3 cost=0.457 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900093;3:3>5 cost=1.974 ret=0x44f457 cur=0x100000c900094 dst=0x100000c900059;4:3>3 cost=1.460 ret=0x44f457 cur=0x100000c900093 dst=0x100000c900092;5:3>3 cost=1.351 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900091;6:3>4 cost=0.299 ret=0x44f457 cur=0x100000c900092 dst=0x100000c900069;7:4>5 cost=0.021 ret=0x44f457 cur=0x100000c900069 dst=0x100000c900057]
|
||||||
|
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=93 startHandle=0x100000ac0007b targetHandle=0x100000ac0007a graph=0x1a1826aa0 startPoint=(-1318.02,8.5,-661.355) targetPoint=(-1316.9,8.5,-659.338) outPath=0x79afd130 outCount=0x79afbe30 provider=0x79afce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=99 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.262 +58262ms hook GPSSearch 0x44f054 call=92 startHandle=0x100000ac000c4 targetHandle=0x100000ac0008f graph=0x1a1826790 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.88,8.5,-657.732) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=98 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer result call=100 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSSearch result call=91 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer 0x44cc7c call=105 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1398.46,-765.082,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1119717888/0x42bd8a00 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSSearch 0x44f054 call=90 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826b10 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1412.6,11.8,-736.783) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=96 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSRouteProducer result call=95 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2954466976/0xb01996a0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.490 edgeCostMax=4.115 edgeCostAvg=1.481 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.628 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.458 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=4.115 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;4:3>3 cost=1.366 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268;5:3>255 cost=0.490 ret=0x44f629 cur=0x1000009e00268 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.263 +58263ms hook GPSSearch result call=93 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer result call=92 value=0x42ae6120 out_u0c=11/0xb out_u1c=5/0x5 out_u20=2928671312/0xae8ffa50 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.191 edgeCostMax=6.160 edgeCostAvg=2.132 edgeSrcClasses=[3:16] edgeDstClasses=[3:15,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:3>3 cost=4.937 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.273 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.777 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271;4:3>3 cost=6.160 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00274;5:3>3 cost=0.633 ret=0x44f457 cur=0x1000009a00271 dst=0x1000009a001c9;6:3>3 cost=0.346 ret=0x44f457 cur=0x1000009a001c9 dst=0x1000009a001ca;7:3>3 cost=5.243 ret=0x44f457 cur=0x1000009a001ca dst=0x1000009a001c8]
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer result call=105 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=106 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1390.83,-788.084,11.7671,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117358592/0x42998a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=103 graph=0x591db1080 query=0x79bfe010 outResult=0x79bfe2b8 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1359.25,-647.748,6.1505,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099380224/0x41873600 query_ptr98=0 query_ptra0=0 query_flagsa8=3338366288/0xc6fb6d50 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSRouteProducer 0x44cc7c call=107 graph=0x591db1080 query=0x79e7dfc0 outResult=0x79e7e120 query_start00=(-1396.04,-761.297,11.7561,1) query_end10=(-1400.95,-755.22,11.7551,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.264 +58264ms hook GPSSearch result call=92 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer result call=99 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2948431424/0xafbd7e40 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.016 edgeCostMax=2.911 edgeCostAvg=1.179 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=0.673 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac00047;1:3>3 cost=0.687 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;2:3>3 cost=1.607 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a;3:3>255 cost=0.016 ret=0x44f629 cur=0x100000ac0007a dst=0x0;4:3>3 cost=2.911 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac00079]
|
||||||
|
2026-06-21 03:15:44.265 +58265ms hook GPSSearch 0x44f054 call=95 startHandle=0x1000009e00235 targetHandle=0x1000009e00266 graph=0x1a1826aa0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1390.83,11.8,-788.084) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=106 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer 0x44cc7c call=104 graph=0x591db1080 query=0x795bdfc0 outResult=0x795be120 query_start00=(-1285,-702.378,8.21674,1) query_end10=(-1295.04,-708.012,7.60828,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.265 +58265ms hook GPSRouteProducer 0x44cc7c call=101 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1416.48,-759.59,11.7575,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117695744/0x429eaf00 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.266 +58266ms hook GPSSearch result call=95 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.266 +58266ms hook GPSSearch 0x44f054 call=96 startHandle=0x100000a70017c targetHandle=0x1000008a0000f graph=0x1a1826a30 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1359.25,6.34758,-647.748) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=103 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.266 +58266ms hook GPSSearch 0x44f054 call=97 startHandle=0x1000009a00275 targetHandle=0x1000009a00312 graph=0x1a18269c0 startPoint=(-1396.04,11.8266,-761.297) targetPoint=(-1400.95,11.8,-755.22) outPath=0x79e7d130 outCount=0x79e7be30 provider=0x79e7ce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=107 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.266 +58266ms hook GPSRouteProducer result call=106 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964924480/0xb0b92840 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.724 edgeCostMax=1.957 edgeCostAvg=1.220 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.724 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.367 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>255 cost=1.957 ret=0x44f629 cur=0x1000009e00266 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.267 +58267ms hook GPSRouteProducer result call=101 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.267 +58267ms hook GPSSearch result call=97 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.267 +58267ms hook GPSRouteProducer 0x44cc7c call=109 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1391.18,-782.094,11.7672,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1125074432/0x430f4600 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.267 +58267ms hook GPSSearch 0x44f054 call=94 startHandle=0x100000a200147 targetHandle=0x100000a70017d graph=0x1a1826950 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1351.29,7.9,-649.414) outPath=0x31b0e0 outCount=0x319de0 provider=0x31a2d0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=102 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.268 +58268ms hook GPSRouteProducer result call=107 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2927862064/0xae83a130 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.262 edgeCostMax=4.933 edgeCostAvg=1.487 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=4.933 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00273;1:3>3 cost=2.276 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00270;2:3>3 cost=0.317 ret=0x44f457 cur=0x1000009a00275 dst=0x1000009a00276;3:3>3 cost=0.481 ret=0x44f457 cur=0x1000009a00273 dst=0x1000009a00272;4:3>3 cost=0.756 ret=0x44f457 cur=0x1000009a00272 dst=0x1000009a00313;5:3>3 cost=1.383 ret=0x44f457 cur=0x1000009a00313 dst=0x1000009a00312;6:3>255 cost=0.262 ret=0x44f629 cur=0x1000009a00312 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.268 +58268ms hook GPSSearch 0x44f054 call=99 startHandle=0x1000009e00235 targetHandle=0x1000009e0024b graph=0x1a18269c0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1391.18,11.8,-782.094) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=109 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.268 +58268ms hook GPSRouteProducer 0x44cc7c call=110 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1416.19,-746.128,11.638,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096188928/0x41568400 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.268 +58268ms hook GPSSearch result call=96 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:4,15:3] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.268 +58268ms hook GPSSearch result call=90 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.269 +58269ms hook GPSSearch result call=94 value=0x40000000 hasOutCount=1 outCount=10 filterCalls=17 filterPass=17 filterFail=0 filterBase=0 filterFiltered=17 filterPassClasses=[3:14,15:3] filterFailClasses=[none] filterPassMaskBits=[0:17,1:17] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.269 +58269ms hook GPSSearch result call=99 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer result call=98 value=0x42ae6120 out_u0c=7/0x7 out_u1c=3/0x3 out_u20=2940542352/0xaf451d90 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.099 edgeCostMax=2.873 edgeCostAvg=1.325 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=2.629 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.099 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=2.275 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=0.907 ret=0x44f457 cur=0x100000ac000c3 dst=0x100000ac000c0;4:3>3 cost=0.122 ret=0x44f457 cur=0x100000ac000c0 dst=0x100000ac0008e;5:3>3 cost=0.277 ret=0x44f457 cur=0x100000ac0008e dst=0x100000ac00090;6:3>3 cost=2.337 ret=0x44f457 cur=0x100000ac00090 dst=0x100000ac0008f;7:3>255 cost=0.406 ret=0x44f629 cur=0x100000ac0008f dst=0x0]
|
||||||
|
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer result call=109 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2965124064/0xb0bc33e0 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.284 edgeCostMax=1.681 edgeCostAvg=0.928 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.651 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=1.488 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.681 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=0.284 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233;4:3>3 cost=0.523 ret=0x44f457 cur=0x1000009e00233 dst=0x1000009e0024c;5:3>3 cost=0.976 ret=0x44f457 cur=0x1000009e0024c dst=0x1000009e0024b;6:3>255 cost=0.891 ret=0x44f629 cur=0x1000009e0024b dst=0x0]
|
||||||
|
2026-06-21 03:15:44.269 +58269ms hook GPSRouteProducer 0x44cc7c call=111 graph=0x591db1080 query=0x794be010 outResult=0x794be2b8 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1325.15,-641.489,7.72641,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160181760/0x4526f800 query_ptr98=0 query_ptra0=0 query_flagsa8=3210836784/0xbf617b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.270 +58270ms hook GPSRouteProducer result call=102 value=0x42ae6120 out_u0c=11/0xb out_u1c=6/0x6 out_u20=2701653008/0xa107f410 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=18 edgeCostMin=0.074 edgeCostMax=3.441 edgeCostAvg=1.401 edgeSrcClasses=[3:15,15:3] edgeDstClasses=[3:14,15:3,invalid:1] edgeRetRvas=[0x44f457:17,0x44f629:1] edgeSamples=[0:3>3 cost=1.113 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=1.026 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.192 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=1.401 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.074 ret=0x44f457 cur=0x100000a200146 dst=0x100000a700176;5:3>3 cost=0.763 ret=0x44f457 cur=0x100000a700176 dst=0x100000a700179;6:3>3 cost=1.766 ret=0x44f457 cur=0x100000a700179 dst=0x1000008a00001;7:3>15 cost=0.262 ret=0x44f457 cur=0x100000a700179 dst=0x100000a700178]
|
||||||
|
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer 0x44cc7c call=112 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1399.96,-780.732,3.05697,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1100147456/0x4192eb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer result call=97 value=0x42ae6120 out_u0c=8/0x8 out_u1c=3/0x3 out_u20=2917393776/0xade3e570 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.039 edgeCostMax=2.072 edgeCostAvg=1.067 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.247 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=2.072 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.128 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=0.744 ret=0x44f457 cur=0x100000850004c dst=0x100000a200148;5:3>3 cost=1.192 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;6:3>3 cost=1.406 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;7:3>3 cost=0.713 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200149]
|
||||||
|
2026-06-21 03:15:44.271 +58271ms hook GPSRouteProducer result call=96 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=1.281 edgeCostMax=5.488 edgeCostAvg=3.010 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=1.281 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=2.096 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=3.174 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.271 +58271ms hook GPSSearch 0x44f054 call=101 startHandle=0x1000009e00235 targetHandle=0x1000009900149 graph=0x1a1826950 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1399.96,3.4,-780.732) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=112 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer 0x44cc7c call=108 graph=0x591db1080 query=0x799fe010 outResult=0x799fe2b8 query_start00=(-1406.53,-756.812,11.8641,1) query_end10=(-1414.35,-763.163,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1124434688/0x43058300 query_ptr98=0 query_ptra0=0 query_flagsa8=2635278832/0x9d1329f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer result call=110 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.272 +58272ms hook GPSRouteProducer 0x44cc7c call=114 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1359.35,-647.385,5.8849,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108920064/0x4218c700 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer result call=103 value=0x42ae6120 out_u0c=5/0x5 out_u1c=2/0x2 out_u20=2949025584/0xafc68f30 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.186 edgeCostMax=3.095 edgeCostAvg=1.307 edgeSrcClasses=[3:5,15:3] edgeDstClasses=[3:4,15:3,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=0.186 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=1.026 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.571 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>3 cost=0.595 ret=0x44f457 cur=0x100000a700172 dst=0x100000a70016e;4:3>15 cost=1.627 ret=0x44f457 cur=0x100000a700172 dst=0x100000a700177;5:15>15 cost=3.095 ret=0x44f457 cur=0x100000a700177 dst=0x1000008a0000f;6:15>255 cost=0.499 ret=0x44f629 cur=0x1000008a0000f dst=0x0;7:15>15 cost=1.859 ret=0x44f457 cur=0x100000a700177 dst=0x100000a700178]
|
||||||
|
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer 0x44cc7c call=115 graph=0x591db1080 query=0x797fe010 outResult=0x797fe2b8 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1418.28,-741.637,11.6251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117863168/0x42a13d00 query_ptr98=0 query_ptra0=0 query_flagsa8=3336183504/0xc6da1ed0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer 0x44cc7c call=113 graph=0x591db1080 query=0x31bf70 outResult=0x31c0d0 query_start00=(-1363.3,-649.88,5.84,1) query_end10=(-1361.18,-647.319,5.81129,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.273 +58273ms hook GPSRouteProducer result call=108 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.274 +58274ms hook GPSRouteProducer 0x44cc7c call=117 graph=0x591db1080 query=0x79bfdfc0 outResult=0x79bfe120 query_start00=(-1354.37,-651.058,7.78214,1) query_end10=(-1352.15,-648.684,7.78455,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.274 +58274ms hook GPSRouteProducer 0x44cc7c call=116 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1415.22,-744.207,11.6254,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1115694080/0x42802400 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.274 +58274ms hook GPSSearch 0x44f054 call=100 startHandle=0x100000ac000c4 targetHandle=0x1000008f00064 graph=0x1a18269c0 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1325.15,7.86573,-641.489) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=111 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.274 +58274ms hook GPSSearch 0x44f054 call=98 startHandle=0x100000c900087 targetHandle=0x100000c900026 graph=0x1a1826790 startPoint=(-1285,8.4,-702.7) targetPoint=(-1295.04,7.84026,-708.012) outPath=0x795bd130 outCount=0x795bbe30 provider=0x795bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=104 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.278 +58278ms hook GPSSearch result call=100 value=0x40000000 hasOutCount=1 outCount=24 filterCalls=44 filterPass=44 filterFail=0 filterBase=0 filterFiltered=44 filterPassClasses=[3:32,5:6,15:6] filterFailClasses=[none] filterPassMaskBits=[0:44,1:44] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.280 +58280ms hook GPSSearch result call=98 value=0x40000000 hasOutCount=1 outCount=16 filterCalls=33 filterPass=33 filterFail=0 filterBase=33 filterFiltered=0 filterPassClasses=[3:11,5:14,15:8] filterFailClasses=[none] filterPassMaskBits=[0:33,1:33] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.280 +58280ms hook GPSRouteProducer result call=116 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer result call=104 value=0x42ae6120 out_u0c=16/0x10 out_u1c=1/0x1 out_u20=2919658256/0xae067310 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=34 edgeCostMin=0.063 edgeCostMax=2.103 edgeCostAvg=1.011 edgeSrcClasses=[3:13,5:11,15:10] edgeDstClasses=[3:11,5:14,15:8,invalid:1] edgeRetRvas=[0x44f457:33,0x44f629:1] edgeSamples=[0:3>3 cost=1.051 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900094;1:3>3 cost=0.507 ret=0x44f457 cur=0x100000c900087 dst=0x100000c900088;2:3>5 cost=1.931 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90005a;3:3>3 cost=0.375 ret=0x44f457 cur=0x100000c900088 dst=0x100000c90008a;4:3>3 cost=0.961 ret=0x44f457 cur=0x100000c90008a dst=0x100000c900085;5:3>3 cost=1.273 ret=0x44f457 cur=0x100000c90008a dst=0x100000c90008b;6:3>3 cost=1.756 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900086;7:3>3 cost=0.706 ret=0x44f457 cur=0x100000c90008b dst=0x100000c900089]
|
||||||
|
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer 0x44cc7c call=118 graph=0x591db1080 query=0x793be010 outResult=0x793be2b8 query_start00=(-1411.46,-754.164,11.8493,1) query_end10=(-1403.37,-748.971,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1112760832/0x42536200 query_ptr98=0 query_ptra0=0 query_flagsa8=3331490544/0xc69282f0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.282 +58282ms hook GPSRouteProducer result call=111 value=0x42ae6120 out_u0c=23/0x17 out_u1c=7/0x7 out_u20=2522885824/0x96602ec0 out_u24=5/0x5 out_u2c=7/0x7 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=45 edgeCostMin=0.010 edgeCostMax=19.261 edgeCostAvg=2.678 edgeSrcClasses=[3:32,5:5,15:8] edgeDstClasses=[3:32,5:6,15:6,invalid:1] edgeRetRvas=[0x44f457:44,0x44f629:1] edgeSamples=[0:3>3 cost=2.641 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.094 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=2.275 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=0.179 ret=0x44f457 cur=0x100000ac000be dst=0x100000ac000bb;4:3>3 cost=0.109 ret=0x44f457 cur=0x100000ac000bb dst=0x100000ac000ba;5:3>3 cost=2.799 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;6:3>3 cost=4.447 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;7:3>3 cost=0.487 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb]
|
||||||
|
2026-06-21 03:15:44.292 +58292ms hook GPSSearch 0x44f054 call=102 startHandle=0x100000850004d targetHandle=0x1000008a00010 graph=0x1a1826b10 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1359.35,6.28622,-647.385) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=114 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.293 +58293ms hook GPSSearch result call=102 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:6,15:1] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.302 +58302ms hook GPSSearch 0x44f054 call=104 startHandle=0x100000a200147 targetHandle=0x100000850004e graph=0x1a1826aa0 startPoint=(-1363.3,6.1,-649.88) targetPoint=(-1361.18,6.1,-647.319) outPath=0x31b0e0 outCount=0x319de0 provider=0x31adf0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=113 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer 0x44cc7c call=119 graph=0x591db1080 query=0x794bdfc0 outResult=0x794be120 query_start00=(-1319.72,-651.691,8.22216,1) query_end10=(-1316.7,-645.733,8.24656,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer result call=118 value=0x42ae6120 out_u0c=0/0x0 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=2/0x2 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.303 +58303ms hook GPSRouteProducer result call=114 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.433 edgeCostMax=1.774 edgeCostAvg=1.133 edgeSrcClasses=[3:7,15:1] edgeDstClasses=[3:6,15:1,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.269 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.500 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.774 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.643 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=0.866 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.471 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>255 cost=0.433 ret=0x44f629 cur=0x1000008a00010 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.303 +58303ms hook GPSSearch 0x44f054 call=103 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1418.28,11.8,-741.637) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=115 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.304 +58304ms hook GPSSearch 0x44f054 call=105 startHandle=0x100000a70017c targetHandle=0x100000a70017d graph=0x1a18268e0 startPoint=(-1354.37,7.9,-651.058) targetPoint=(-1352.15,7.9,-648.684) outPath=0x79bfd130 outCount=0x79bfbe30 provider=0x79bfce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=117 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.304 +58304ms hook GPSSearch result call=104 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=8 filterFiltered=0 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.304 +58304ms hook GPSSearch result call=105 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.305 +58305ms hook GPSSearch result call=103 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.305 +58305ms hook GPSRouteProducer result call=117 value=0x42ae6120 out_u0c=3/0x3 out_u1c=1/0x1 out_u20=2956207976/0xb0342768 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.114 edgeCostMax=2.010 edgeCostAvg=1.343 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.114 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017a;1:3>3 cost=2.010 ret=0x44f457 cur=0x100000a70017c dst=0x100000a700172;2:3>3 cost=1.608 ret=0x44f457 cur=0x100000a70017c dst=0x100000a70017d;3:3>255 cost=1.641 ret=0x44f629 cur=0x100000a70017d dst=0x0]
|
||||||
|
2026-06-21 03:15:44.306 +58306ms hook GPSRouteProducer result call=115 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.675 edgeCostMax=10.321 edgeCostAvg=4.493 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.675 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=1.491 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=10.321 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.308 +58308ms hook GPSRouteProducer 0x44cc7c call=121 graph=0x591db1080 query=0x797fdfc0 outResult=0x797fe120 query_start00=(-1407.34,-737.188,11.6255,1) query_end10=(-1406,-741.425,11.7515,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.308 +58308ms hook GPSSearch result call=101 value=0x40000000 hasOutCount=1 outCount=84 filterCalls=785 filterPass=785 filterFail=0 filterBase=0 filterFiltered=785 filterPassClasses=[1:3,3:741,15:41] filterFailClasses=[none] filterPassMaskBits=[0:785,1:785] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=107 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1407.34,11.8,-737.188) targetPoint=(-1406,11.8,-741.425) outPath=0x797fd130 outCount=0x797fbe30 provider=0x797fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=121 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer 0x44cc7c call=120 graph=0x591db1080 query=0x796be010 outResult=0x796be2b8 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1352.77,-633.825,7.67654,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1158876928/0x45130f00 query_ptr98=0 query_ptra0=0 query_flagsa8=2707659568/0xa1639b30 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer result call=112 value=0x42ae6120 out_u0c=74/0x4a out_u1c=51/0x33 out_u20=3256597344/0xc21bbb60 out_u24=5/0x5 out_u2c=51/0x33 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=786 edgeCostMin=0.000 edgeCostMax=15.427 edgeCostAvg=1.321 edgeSrcClasses=[1:3,3:741,15:42] edgeDstClasses=[1:3,3:741,15:41,invalid:1] edgeRetRvas=[0x44f457:785,0x44f629:1] edgeSamples=[0:3>3 cost=1.158 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.639 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.681 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=1.692 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233;4:3>3 cost=0.358 ret=0x44f457 cur=0x1000009e00233 dst=0x1000009e0024c;5:3>3 cost=1.806 ret=0x44f457 cur=0x1000009e0024c dst=0x1000009e0024b;6:3>3 cost=3.406 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;7:3>3 cost=2.298 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268]
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=108 startHandle=0x100000850004d targetHandle=0x1000008a0014a graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1352.77,7.79621,-633.825) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=120 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSSearch 0x44f054 call=106 startHandle=0x100000ac000c4 targetHandle=0x1000008f0001c graph=0x1a1826b10 startPoint=(-1319.72,8.5,-651.691) targetPoint=(-1316.7,8.5,-645.733) outPath=0x794bd130 outCount=0x794bbe30 provider=0x794bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=119 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer 0x44cc7c call=122 graph=0x591db1080 query=0x798fe010 outResult=0x798fe2b8 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1399.68,-796.178,7.59665,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099296256/0x4185ee00 query_ptr98=0 query_ptra0=0 query_flagsa8=3282280496/0xc3a3a030 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.309 +58309ms hook GPSRouteProducer result call=113 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2250920704/0x862a5300 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.301 edgeCostMax=2.193 edgeCostAvg=1.036 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.301 ret=0x44f457 cur=0x100000a200147 dst=0x100000a20011f;1:3>3 cost=0.444 ret=0x44f457 cur=0x100000a200147 dst=0x100000a200149;2:3>3 cost=1.071 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200148;3:3>3 cost=2.193 ret=0x44f457 cur=0x100000a200149 dst=0x100000a200146;4:3>3 cost=0.924 ret=0x44f457 cur=0x100000a200148 dst=0x100000850004c;5:3>3 cost=1.368 ret=0x44f457 cur=0x100000a200148 dst=0x100000a200145;6:3>3 cost=2.141 ret=0x44f457 cur=0x100000850004c dst=0x1000008500049;7:3>3 cost=0.369 ret=0x44f457 cur=0x100000850004c dst=0x100000850004e]
|
||||||
|
2026-06-21 03:15:44.310 +58310ms hook GPSSearch result call=107 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.313 +58313ms hook GPSSearch result call=106 value=0x40000000 hasOutCount=1 outCount=14 filterCalls=23 filterPass=23 filterFail=0 filterBase=23 filterFiltered=0 filterPassClasses=[3:23] filterFailClasses=[none] filterPassMaskBits=[0:23,1:23] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.313 +58313ms hook GPSRouteProducer result call=119 value=0x42ae6120 out_u0c=15/0xf out_u1c=4/0x4 out_u20=2923359280/0xae3eec30 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=24 edgeCostMin=0.050 edgeCostMax=16.803 edgeCostAvg=3.012 edgeSrcClasses=[3:24] edgeDstClasses=[3:23,invalid:1] edgeRetRvas=[0x44f457:23,0x44f629:1] edgeSamples=[0:3>3 cost=2.786 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c3;1:3>3 cost=0.256 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000be;2:3>3 cost=0.772 ret=0x44f457 cur=0x100000ac000c4 dst=0x100000ac000c5;3:3>3 cost=1.267 ret=0x44f457 cur=0x100000ac000c5 dst=0x100000ac000d0;4:3>3 cost=4.055 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000bd;5:3>3 cost=0.678 ret=0x44f457 cur=0x100000ac000d0 dst=0x100000ac000cb;6:3>3 cost=0.050 ret=0x44f457 cur=0x100000ac000cb dst=0x100000ac000c9;7:3>3 cost=1.444 ret=0x44f457 cur=0x100000ac000c9 dst=0x100000ac000b8]
|
||||||
|
2026-06-21 03:15:44.313 +58313ms hook GPSRouteProducer result call=121 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.749 edgeCostMax=5.488 edgeCostAvg=2.671 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.749 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=5.488 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=3.046 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=1.399 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.314 +58314ms hook GPSSearch result call=108 value=0x40000000 hasOutCount=1 outCount=31 filterCalls=95 filterPass=95 filterFail=0 filterBase=0 filterFiltered=95 filterPassClasses=[3:76,4:1,5:8,15:10] filterFailClasses=[none] filterPassMaskBits=[0:95,1:95] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.314 +58314ms hook GPSSearch 0x44f054 call=109 startHandle=0x1000009e00235 targetHandle=0x100000990006e graph=0x1a18268e0 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1399.68,7.6,-796.178) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fc320 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=122 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.314 +58314ms hook GPSRouteProducer result call=120 value=0x42ae6120 out_u0c=20/0x14 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=96 edgeCostMin=0.000 edgeCostMax=6.639 edgeCostAvg=1.177 edgeSrcClasses=[3:73,4:1,5:9,15:13] edgeDstClasses=[3:76,4:1,5:8,15:10,invalid:1] edgeRetRvas=[0x44f457:95,0x44f629:1] edgeSamples=[0:3>3 cost=1.061 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.184 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.616 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.551 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=0.031 ret=0x44f457 cur=0x100000850004b dst=0x100000850004a;5:3>3 cost=0.181 ret=0x44f457 cur=0x100000850004a dst=0x1000008500045;6:3>3 cost=1.692 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;7:3>3 cost=0.664 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000]
|
||||||
|
2026-06-21 03:15:44.334 +58334ms hook GPSRouteProducer 0x44cc7c call=123 graph=0x591db1080 query=0x796bdfc0 outResult=0x796be120 query_start00=(-1363.13,-644.956,5.84334,1) query_end10=(-1359.35,-647.385,5.8849,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.337 +58337ms hook GPSSearch result call=109 value=0x40000000 hasOutCount=1 outCount=76 filterCalls=646 filterPass=646 filterFail=0 filterBase=0 filterFiltered=646 filterPassClasses=[3:629,15:17] filterFailClasses=[none] filterPassMaskBits=[0:646,1:646] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.337 +58337ms hook GPSSearch 0x44f054 call=110 startHandle=0x100000850004d targetHandle=0x1000008a00010 graph=0x1a1826950 startPoint=(-1363.13,6.1,-644.956) targetPoint=(-1359.35,6.28622,-647.385) outPath=0x796bd130 outCount=0x796bbe30 provider=0x796bce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=123 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.338 +58338ms hook GPSRouteProducer result call=122 value=0x42ae6120 out_u0c=62/0x3e out_u1c=39/0x27 out_u20=3256597616/0xc21bbc70 out_u24=5/0x5 out_u2c=39/0x27 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=647 edgeCostMin=0.000 edgeCostMax=11.901 edgeCostAvg=1.256 edgeSrcClasses=[3:627,15:20] edgeDstClasses=[3:629,15:17,invalid:1] edgeRetRvas=[0x44f457:646,0x44f629:1] edgeSamples=[0:3>3 cost=1.612 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.740 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.453 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>3 cost=3.948 ret=0x44f457 cur=0x1000009e00266 dst=0x10000099000ea;4:3>3 cost=3.347 ret=0x44f457 cur=0x1000009e00266 dst=0x1000009e00268;5:3>3 cost=0.084 ret=0x44f457 cur=0x10000099000ea dst=0x10000099000e9;6:3>3 cost=0.156 ret=0x44f457 cur=0x10000099000e9 dst=0x10000099000e8;7:3>3 cost=0.685 ret=0x44f457 cur=0x1000009e00234 dst=0x1000009e00233]
|
||||||
|
2026-06-21 03:15:44.338 +58338ms hook GPSSearch result call=110 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[3:6,15:1] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.338 +58338ms hook GPSRouteProducer 0x44cc7c call=124 graph=0x591db1080 query=0x798fdfc0 outResult=0x798fe120 query_start00=(-1389.58,-785.005,11.7676,1) query_end10=(-1390.83,-788.084,11.7671,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:44.339 +58339ms hook GPSRouteProducer result call=123 value=0x42ae6120 out_u0c=6/0x6 out_u1c=2/0x2 out_u20=2917921760/0xadebf3e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.433 edgeCostMax=1.774 edgeCostAvg=1.133 edgeSrcClasses=[3:7,15:1] edgeDstClasses=[3:6,15:1,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=1.109 ret=0x44f457 cur=0x100000850004d dst=0x100000850004b;1:3>3 cost=1.269 ret=0x44f457 cur=0x100000850004d dst=0x100000850004e;2:3>3 cost=1.500 ret=0x44f457 cur=0x100000850004e dst=0x1000008a00001;3:3>3 cost=1.774 ret=0x44f457 cur=0x100000850004e dst=0x100000850004c;4:3>3 cost=1.643 ret=0x44f457 cur=0x1000008a00001 dst=0x100000a700179;5:3>3 cost=0.866 ret=0x44f457 cur=0x1000008a00001 dst=0x1000008a00000;6:3>15 cost=0.471 ret=0x44f457 cur=0x1000008a00000 dst=0x1000008a00010;7:15>255 cost=0.433 ret=0x44f629 cur=0x1000008a00010 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.339 +58339ms hook GPSSearch 0x44f054 call=111 startHandle=0x1000009e00235 targetHandle=0x1000009e00266 graph=0x1a1826950 startPoint=(-1389.58,11.8,-785.005) targetPoint=(-1390.83,11.8,-788.084) outPath=0x798fd130 outCount=0x798fbe30 provider=0x798fce40 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=124 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.339 +58339ms hook GPSSearch result call=111 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.339 +58339ms hook GPSRouteProducer result call=124 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964924480/0xb0b92840 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.724 edgeCostMax=1.957 edgeCostAvg=1.220 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.724 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00234;1:3>3 cost=0.831 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00232;2:3>3 cost=1.367 ret=0x44f457 cur=0x1000009e00235 dst=0x1000009e00266;3:3>255 cost=1.957 ret=0x44f629 cur=0x1000009e00266 dst=0x0]
|
||||||
|
2026-06-21 03:15:44.387 +58387ms hook GPSRouteProducer 0x44cc7c call=125 graph=0x591db1080 query=0x794bf8c0 outResult=0x794bf860 query_start00=(-1410.76,-746.653,11.6624,1) query_end10=(-1411.65,-746.178,11.6512,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=3185773264/0xbde30ad0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.387 +58387ms hook GPSSearch 0x44f054 call=112 startHandle=0x1000009a003a4 targetHandle=0x1000009a003a4 graph=0x1a1826950 startPoint=(-1410.76,11.8,-746.653) targetPoint=(-1411.65,11.8,-746.178) outPath=0x794be980 outCount=0x794bd680 provider=0x794bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=125 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.388 +58388ms hook GPSSearch result call=112 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.388 +58388ms hook GPSRouteProducer result call=125 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2941379040/0xaf51e1e0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:44.389 +58389ms hook GPSRouteProducer 0x44cc7c call=126 graph=0x591db1080 query=0x794bf8c0 outResult=0x794bf860 query_start00=(-1325.86,-707.684,7.735,1) query_end10=(-1316.45,-707.932,7.52451,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=3046958896/0xb59ce730 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:44.389 +58389ms hook GPSSearch 0x44f054 call=113 startHandle=0x100000ab00057 targetHandle=0x100000ab0003a graph=0x1a1826950 startPoint=(-1325.86,7.9,-707.684) targetPoint=(-1316.45,7.9,-707.932) outPath=0x794be980 outCount=0x794bd680 provider=0x794bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=126 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:44.390 +58390ms hook GPSSearch result call=113 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=14 filterPass=14 filterFail=0 filterBase=0 filterFiltered=14 filterPassClasses=[5:11,15:3] filterFailClasses=[none] filterPassMaskBits=[0:14,1:14] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:44.391 +58391ms hook GPSRouteProducer result call=126 value=0x42ae6120 out_u0c=9/0x9 out_u1c=6/0x6 out_u20=2940474128/0xaf441310 out_u24=1/0x1 out_u2c=6/0x6 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=15 edgeCostMin=0.229 edgeCostMax=2.724 edgeCostAvg=1.622 edgeSrcClasses=[5:15] edgeDstClasses=[5:11,15:3,invalid:1] edgeRetRvas=[0x44f457:14,0x44f629:1] edgeSamples=[0:5>5 cost=1.368 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00056;1:5>5 cost=1.949 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00053;2:5>5 cost=0.757 ret=0x44f457 cur=0x100000ab00057 dst=0x100000ab00058;3:5>15 cost=2.376 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab0007f;4:5>5 cost=0.890 ret=0x44f457 cur=0x100000ab00056 dst=0x100000ab00048;5:5>5 cost=0.229 ret=0x44f457 cur=0x100000ab00048 dst=0x100000ab00049;6:5>15 cost=2.410 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab00074;7:5>5 cost=0.819 ret=0x44f457 cur=0x100000ab00049 dst=0x100000ab0004b]
|
||||||
|
2026-06-21 03:15:46.456 +60456ms hook GPSRouteProducer 0x44cc7c call=127 graph=0x591db1080 query=0x797ff880 outResult=0x797ff810 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1314.84,-670.629,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2038430160/0x797ff9d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:46.457 +60457ms hook GPSSearch 0x44f054 call=114 startHandle=0x100000ac00032 targetHandle=0x100000ac00030 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1315.36,8.5,-670.654) outPath=0x797fe940 outCount=0x797fd640 provider=0x797fdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=127 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:46.457 +60457ms hook GPSSearch result call=114 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:46.458 +60458ms hook GPSRouteProducer result call=127 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.148 edgeCostMax=6.435 edgeCostAvg=2.636 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.196 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>3 cost=0.729 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b;3:3>3 cost=4.805 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;4:3>3 cost=3.501 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00030;5:3>255 cost=0.148 ret=0x44f629 cur=0x100000ac00030 dst=0x0]
|
||||||
|
2026-06-21 03:15:46.458 +60458ms hook GPSRouteProducer 0x44cc7c call=128 graph=0x591db1080 query=0x797ff430 outResult=0x797ff5d8 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.91,-667.619,8.2223,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:46.458 +60458ms hook GPSSearch 0x44f054 call=115 startHandle=0x100000ac00030 targetHandle=0x100000ac00056 graph=0x1a1826b10 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.91,8.5,-667.619) outPath=0x797fe5a0 outCount=0x797fd2a0 provider=0x797fe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=128 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:46.459 +60459ms hook GPSSearch result call=115 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:46.459 +60459ms hook GPSRouteProducer result call=128 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2913715936/0xadabc6e0 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.122 edgeCostMax=6.288 edgeCostAvg=1.990 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.122 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.836 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.239 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=1.437 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.288 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.840 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>255 cost=0.172 ret=0x44f629 cur=0x100000ac00056 dst=0x0]
|
||||||
|
2026-06-21 03:15:46.459 +60459ms hook GPSRouteProducer 0x44cc7c call=129 graph=0x591db1080 query=0x797ff040 outResult=0x797ff1a0 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1314.84,-670.629,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:46.460 +60460ms hook GPSSearch 0x44f054 call=116 startHandle=0x100000ac00032 targetHandle=0x100000ac00030 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1315.36,8.5,-670.654) outPath=0x797fe1b0 outCount=0x797fceb0 provider=0x797fdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=129 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:46.460 +60460ms hook GPSSearch result call=116 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:46.460 +60460ms hook GPSRouteProducer result call=129 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.148 edgeCostMax=6.435 edgeCostAvg=2.636 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.196 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>3 cost=0.729 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b;3:3>3 cost=4.805 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;4:3>3 cost=3.501 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00030;5:3>255 cost=0.148 ret=0x44f629 cur=0x100000ac00030 dst=0x0]
|
||||||
|
2026-06-21 03:15:46.466 +60466ms hook GPSRouteProducer 0x44cc7c call=130 graph=0x591db1080 query=0x796bf8c0 outResult=0x796bf860 query_start00=(-1316.92,-674.166,8.2225,1) query_end10=(-1316.34,-671.294,8.22118,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:46.466 +60466ms hook GPSSearch 0x44f054 call=117 startHandle=0x100000ac00032 targetHandle=0x100000ac00031 graph=0x1a1826b10 startPoint=(-1316.92,8.5,-674.166) targetPoint=(-1316.34,8.5,-671.294) outPath=0x796be980 outCount=0x796bd680 provider=0x796bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=130 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:46.467 +60467ms hook GPSSearch result call=117 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:46.467 +60467ms hook GPSRouteProducer result call=130 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.209 edgeCostMax=6.435 edgeCostAvg=2.513 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=6.435 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0002f;1:3>3 cost=0.209 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac00031;2:3>255 cost=2.721 ret=0x44f629 cur=0x100000ac00031 dst=0x0;3:3>3 cost=0.686 ret=0x44f457 cur=0x100000ac00032 dst=0x100000ac0000b]
|
||||||
|
2026-06-21 03:15:46.725 +60725ms hook GPSRouteProducer 0x44cc7c call=131 graph=0x591db1080 query=0x794bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.36,7.96167,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:15:46.726 +60726ms hook GPSRouteProducer result call=131 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2940830848/0xaf498480 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.872 edgeCostAvg=0.947 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.693 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.872 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.871 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:15:47.396 +61396ms hook GPSRouteProducer 0x44cc7c call=132 graph=0x591db1080 query=0x796bf880 outResult=0x796bf810 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1401.43,-767.157,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2037119440/0x796bf9d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:47.397 +61397ms hook GPSSearch 0x44f054 call=118 startHandle=0x1000009a00210 targetHandle=0x1000009a00274 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1401.42,11.8,-766.826) outPath=0x796be940 outCount=0x796bd640 provider=0x796bdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=132 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:47.397 +61397ms hook GPSSearch result call=118 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:47.397 +61397ms hook GPSRouteProducer result call=132 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2917376720/0xade3a2d0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.041 edgeCostMax=3.703 edgeCostAvg=1.387 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.842 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>3 cost=3.703 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00274;4:3>255 cost=1.250 ret=0x44f629 cur=0x1000009a00274 dst=0x0;5:3>3 cost=2.398 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e]
|
||||||
|
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer 0x44cc7c call=133 graph=0x591db1080 query=0x796bf430 outResult=0x796bf5d8 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1398.62,-765.062,11.7559,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:47.398 +61398ms hook GPSSearch 0x44f054 call=119 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a18268e0 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1398.62,11.8322,-765.062) outPath=0x796be5a0 outCount=0x796bd2a0 provider=0x796be2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=133 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:47.398 +61398ms hook GPSSearch result call=119 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=2 filterFiltered=0 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer result call=133 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2977629824/0xb17b0680 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.455 edgeCostMax=3.525 edgeCostAvg=2.276 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.849 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=1.455 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
|
||||||
|
2026-06-21 03:15:47.398 +61398ms hook GPSRouteProducer 0x44cc7c call=134 graph=0x591db1080 query=0x796bf040 outResult=0x796bf1a0 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1401.43,-767.157,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:47.399 +61399ms hook GPSSearch 0x44f054 call=120 startHandle=0x1000009a00210 targetHandle=0x1000009a00274 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1401.42,11.8,-766.826) outPath=0x796be1b0 outCount=0x796bceb0 provider=0x796bdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=134 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:47.399 +61399ms hook GPSSearch result call=120 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:47.399 +61399ms hook GPSRouteProducer result call=134 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2917358832/0xade35cf0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.041 edgeCostMax=3.703 edgeCostAvg=1.387 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=0.842 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>3 cost=3.703 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00274;4:3>255 cost=1.250 ret=0x44f629 cur=0x1000009a00274 dst=0x0;5:3>3 cost=2.398 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e]
|
||||||
|
2026-06-21 03:15:47.403 +61403ms hook GPSRouteProducer 0x44cc7c call=135 graph=0x591db1080 query=0x797ff8c0 outResult=0x797ff860 query_start00=(-1405.77,-764.335,11.7859,1) query_end10=(-1402.49,-766.232,11.7852,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:47.403 +61403ms hook GPSSearch 0x44f054 call=121 startHandle=0x1000009a00210 targetHandle=0x1000009a00211 graph=0x1a18268e0 startPoint=(-1405.77,11.8,-764.335) targetPoint=(-1402.49,11.8289,-766.232) outPath=0x797fe980 outCount=0x797fd680 provider=0x797fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=135 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:47.403 +61403ms hook GPSSearch result call=121 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:47.404 +61404ms hook GPSRouteProducer result call=135 value=0x42ae6120 out_u0c=4/0x4 out_u1c=2/0x2 out_u20=2970898624/0xb11450c0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.041 edgeCostMax=3.723 edgeCostAvg=1.175 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.845 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a0020f;1:3>3 cost=0.041 ret=0x44f457 cur=0x1000009a00210 dst=0x1000009a00212;2:3>3 cost=0.091 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00211;3:3>255 cost=3.723 ret=0x44f629 cur=0x1000009a00211 dst=0x0]
|
||||||
|
2026-06-21 03:15:47.731 +61731ms hook GPSRouteProducer 0x44cc7c call=136 graph=0x591db1080 query=0x795bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96503,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:15:47.731 +61731ms hook GPSRouteProducer result call=136 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2962725344/0xb09799e0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:15:48.515 +62515ms hook GPSRouteProducer 0x44cc7c call=137 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.91,-666.497,8.22225,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1096561664/0x415c3400 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:48.515 +62515ms hook GPSSearch 0x44f054 call=122 startHandle=0x100000ac00030 targetHandle=0x100000ac0004e graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.91,8.5,-666.497) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=137 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:48.516 +62516ms hook GPSSearch result call=122 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[3:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:48.516 +62516ms hook GPSRouteProducer result call=137 value=0x42ae6120 out_u0c=7/0x7 out_u1c=2/0x2 out_u20=2889992336/0xac41c890 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.156 edgeCostMax=6.394 edgeCostAvg=1.886 edgeSrcClasses=[3:8] edgeDstClasses=[3:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:3>3 cost=0.156 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.755 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.256 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=0.667 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.394 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.676 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>3 cost=0.544 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;7:3>255 cost=1.639 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
|
||||||
|
2026-06-21 03:15:48.516 +62516ms hook GPSRouteProducer 0x44cc7c call=138 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.96,-674.416,8.22251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1093079040/0x41271000 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:48.517 +62517ms hook GPSSearch 0x44f054 call=123 startHandle=0x100000ac00030 targetHandle=0x100000ac00032 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.96,8.5,-674.416) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=138 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:48.517 +62517ms hook GPSSearch result call=123 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:48.517 +62517ms hook GPSRouteProducer result call=138 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.154 edgeCostMax=3.909 edgeCostAvg=1.999 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=3.909 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=3.506 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>255 cost=0.428 ret=0x44f629 cur=0x100000ac00032 dst=0x0]
|
||||||
|
2026-06-21 03:15:48.517 +62517ms hook GPSRouteProducer 0x44cc7c call=139 graph=0x591db1080 query=0x797ff190 outResult=0x797ff438 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1317.61,-666.499,8.22225,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1110801152/0x42357b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3268810864/0xc2d61870 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:48.518 +62518ms hook GPSSearch 0x44f054 call=124 startHandle=0x100000ac00030 targetHandle=0x100000ac00056 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1317.61,8.5,-666.499) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=139 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:48.518 +62518ms hook GPSSearch result call=124 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:48.518 +62518ms hook GPSRouteProducer result call=139 value=0x42ae6120 out_u0c=6/0x6 out_u1c=1/0x1 out_u20=2913709960/0xadabaf88 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.116 edgeCostMax=6.264 edgeCostAvg=2.175 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.116 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=0.855 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=4.236 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>3 cost=1.737 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;4:3>3 cost=6.264 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;5:3>3 cost=0.876 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;6:3>255 cost=1.141 ret=0x44f629 cur=0x100000ac00056 dst=0x0]
|
||||||
|
2026-06-21 03:15:48.518 +62518ms hook GPSRouteProducer 0x44cc7c call=140 graph=0x591db1080 query=0x797ff140 outResult=0x797ff2a0 query_start00=(-1314.84,-670.629,8.22118,1) query_end10=(-1316.96,-674.416,8.22251,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:48.519 +62519ms hook GPSSearch 0x44f054 call=125 startHandle=0x100000ac00030 targetHandle=0x100000ac00032 graph=0x1a18268e0 startPoint=(-1315.36,8.5,-670.654) targetPoint=(-1316.96,8.5,-674.416) outPath=0x797fe2b0 outCount=0x797fcfb0 provider=0x797fdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=140 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:48.519 +62519ms hook GPSSearch result call=125 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:48.519 +62519ms hook GPSRouteProducer result call=140 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.154 edgeCostMax=3.909 edgeCostAvg=1.999 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.154 ret=0x44f457 cur=0x100000ac00030 dst=0x100000ac00031;1:3>3 cost=3.909 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00058;2:3>3 cost=3.506 ret=0x44f457 cur=0x100000ac00031 dst=0x100000ac00032;3:3>255 cost=0.428 ret=0x44f629 cur=0x100000ac00032 dst=0x0]
|
||||||
|
2026-06-21 03:15:50.055 +64055ms hook GPSRouteProducer 0x44cc7c call=141 graph=0x591db1080 query=0x798ff880 outResult=0x798ff810 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1403.37,-704.101,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2039478736/0x798ff9d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.055 +64055ms hook GPSSearch 0x44f054 call=126 startHandle=0x1000009c0004d targetHandle=0x1000009c00038 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1403.37,7.9,-704.5) outPath=0x798fe940 outCount=0x798fd640 provider=0x798fdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=141 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.056 +64056ms hook GPSSearch result call=126 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[4:1,5:10] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.056 +64056ms hook GPSRouteProducer result call=141 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2825360384/0xa8679400 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.084 edgeCostMax=5.610 edgeCostAvg=1.952 edgeSrcClasses=[5:12] edgeDstClasses=[4:1,5:10,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=0.576 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.228 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.231 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.628 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.829 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.584 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>5 cost=4.499 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056]
|
||||||
|
2026-06-21 03:15:50.057 +64057ms hook GPSRouteProducer 0x44cc7c call=142 graph=0x591db1080 query=0x798ff430 outResult=0x798ff5d8 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1400.45,-707.146,7.79857,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:50.057 +64057ms hook GPSSearch 0x44f054 call=127 startHandle=0x1000009c00038 targetHandle=0x1000009c0002f graph=0x1a18268e0 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1400.45,7.9,-707.146) outPath=0x798fe5a0 outCount=0x798fd2a0 provider=0x798fe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=142 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.057 +64057ms hook GPSSearch result call=127 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[5:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.058 +64058ms hook GPSRouteProducer result call=142 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2880744592/0xabb4ac90 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.709 edgeCostMax=2.965 edgeCostAvg=1.725 edgeSrcClasses=[5:4] edgeDstClasses=[5:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:5>5 cost=2.253 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.709 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>255 cost=0.974 ret=0x44f629 cur=0x1000009c0002f dst=0x0]
|
||||||
|
2026-06-21 03:15:50.058 +64058ms hook GPSRouteProducer 0x44cc7c call=143 graph=0x591db1080 query=0x798ff040 outResult=0x798ff1a0 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1403.37,-704.101,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:50.058 +64058ms hook GPSSearch 0x44f054 call=128 startHandle=0x1000009c0004d targetHandle=0x1000009c00038 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1403.37,7.9,-704.5) outPath=0x798fe1b0 outCount=0x798fceb0 provider=0x798fdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=143 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.059 +64059ms hook GPSSearch result call=128 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[4:1,5:10] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.059 +64059ms hook GPSRouteProducer result call=143 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2825360384/0xa8679400 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.084 edgeCostMax=5.610 edgeCostAvg=1.952 edgeSrcClasses=[5:12] edgeDstClasses=[4:1,5:10,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=0.576 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.228 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.231 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.628 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.829 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.584 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>5 cost=4.499 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056]
|
||||||
|
2026-06-21 03:15:50.063 +64063ms hook GPSRouteProducer 0x44cc7c call=144 graph=0x591db1080 query=0x799ff8c0 outResult=0x799ff860 query_start00=(-1408.17,-706.827,7.83051,1) query_end10=(-1404.19,-704.857,7.80267,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.063 +64063ms hook GPSSearch 0x44f054 call=129 startHandle=0x1000009c0004d targetHandle=0x1000009c00058 graph=0x1a18268e0 startPoint=(-1408.17,7.9,-706.827) targetPoint=(-1404.19,7.9,-704.857) outPath=0x799fe980 outCount=0x799fd680 provider=0x799fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=144 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.064 +64064ms hook GPSSearch result call=129 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[5:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.064 +64064ms hook GPSRouteProducer result call=144 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2911808448/0xad8eabc0 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.211 edgeCostMax=4.553 edgeCostAvg=1.889 edgeSrcClasses=[5:9] edgeDstClasses=[5:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:5>5 cost=0.578 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00047;1:5>5 cost=3.119 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c00045;2:5>5 cost=2.259 ret=0x44f457 cur=0x1000009c0004d dst=0x1000009c0004e;3:5>5 cost=0.233 ret=0x44f457 cur=0x1000009c00047 dst=0x1000009c00057;4:5>5 cost=2.622 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00053;5:5>5 cost=2.877 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00059;6:5>5 cost=0.548 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00058;7:5>255 cost=0.211 ret=0x44f629 cur=0x1000009c00058 dst=0x0]
|
||||||
|
2026-06-21 03:15:50.072 +64072ms hook GPSRouteProducer 0x44cc7c call=145 graph=0x591db1080 query=0x79e7f920 outResult=0x79e7f8b0 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.15,-690.519,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2045246064/0x79e7fa70 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.072 +64072ms hook GPSSearch 0x44f054 call=130 startHandle=0x100000ab0013b targetHandle=0x100000ab00135 graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.15,7.9,-690.519) outPath=0x79e7e9e0 outCount=0x79e7d6e0 provider=0x79e7dbd0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=145 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.073 +64073ms hook GPSSearch result call=130 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[5:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.073 +64073ms hook GPSRouteProducer result call=145 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928827424/0xae925c20 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.091 edgeCostMax=10.744 edgeCostAvg=3.289 edgeSrcClasses=[5:12] edgeDstClasses=[5:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=4.943 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab0016d;1:5>5 cost=1.811 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;2:5>5 cost=0.561 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;3:5>5 cost=0.719 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab00155;4:5>5 cost=5.955 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab000ca;5:5>5 cost=2.506 ret=0x44f457 cur=0x100000ab00155 dst=0x100000ab000c9;6:5>5 cost=10.744 ret=0x44f457 cur=0x100000ab00008 dst=0x100000a6000c2;7:5>5 cost=9.663 ret=0x44f457 cur=0x100000ab00008 dst=0x100000ab000c5]
|
||||||
|
2026-06-21 03:15:50.074 +64074ms hook GPSRouteProducer 0x44cc7c call=146 graph=0x591db1080 query=0x79e7f4d0 outResult=0x79e7f678 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.71,-687.498,7.535,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:50.074 +64074ms hook GPSSearch 0x44f054 call=131 startHandle=0x100000ab00135 targetHandle=0x100000ab0013f graph=0x1a1826a30 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.71,7.9,-687.498) outPath=0x79e7e640 outCount=0x79e7d340 provider=0x79e7e350 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=146 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.075 +64075ms hook GPSSearch result call=131 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.075 +64075ms hook GPSRouteProducer result call=146 value=0x42ae6120 out_u0c=6/0x6 out_u1c=5/0x5 out_u20=2862734096/0xaaa1db10 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.244 edgeCostMax=1.523 edgeCostAvg=0.766 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.244 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.786 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.523 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.634 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.374 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f;5:5>255 cost=1.035 ret=0x44f629 cur=0x100000ab0013f dst=0x0]
|
||||||
|
2026-06-21 03:15:50.075 +64075ms hook GPSRouteProducer 0x44cc7c call=147 graph=0x591db1080 query=0x79e7f0e0 outResult=0x79e7f240 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.15,-690.519,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:50.075 +64075ms hook GPSSearch 0x44f054 call=132 startHandle=0x100000ab0013b targetHandle=0x100000ab00135 graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.15,7.9,-690.519) outPath=0x79e7e250 outCount=0x79e7cf50 provider=0x79e7df60 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=147 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.077 +64077ms hook GPSSearch result call=132 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[5:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.077 +64077ms hook GPSRouteProducer result call=147 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2928821808/0xae924630 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.091 edgeCostMax=10.744 edgeCostAvg=3.289 edgeSrcClasses=[5:12] edgeDstClasses=[5:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:5>5 cost=4.943 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab0016d;1:5>5 cost=1.811 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;2:5>5 cost=0.561 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;3:5>5 cost=0.719 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab00155;4:5>5 cost=5.955 ret=0x44f457 cur=0x100000ab00154 dst=0x100000ab000ca;5:5>5 cost=2.506 ret=0x44f457 cur=0x100000ab00155 dst=0x100000ab000c9;6:5>5 cost=10.744 ret=0x44f457 cur=0x100000ab00008 dst=0x100000a6000c2;7:5>5 cost=9.663 ret=0x44f457 cur=0x100000ab00008 dst=0x100000ab000c5]
|
||||||
|
2026-06-21 03:15:50.080 +64080ms hook GPSRouteProducer 0x44cc7c call=148 graph=0x591db1080 query=0x796bf8c0 outResult=0x796bf860 query_start00=(-1326.74,-694.484,7.71767,1) query_end10=(-1326.86,-691.244,7.73461,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.081 +64081ms hook GPSSearch 0x44f054 call=133 startHandle=0x100000ab0013b targetHandle=0x100000ab0013b graph=0x1a1826a30 startPoint=(-1326.74,7.9,-694.484) targetPoint=(-1326.86,7.9,-691.244) outPath=0x796be980 outCount=0x796bd680 provider=0x796bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=148 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.081 +64081ms hook GPSSearch result call=133 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.081 +64081ms hook GPSRouteProducer result call=148 value=0x42ae6120 out_u0c=2/0x2 out_u1c=1/0x1 out_u20=2943889800/0xaf783188 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:50.245 +64245ms hook GPSRouteProducer 0x44cc7c call=149 graph=0x591db1080 query=0x31d820 outResult=0x31d7b0 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412,-742.531,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=3266928/0x31d970 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.245 +64245ms hook GPSSearch 0x44f054 call=134 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412,11.8,-742.531) outPath=0x31c8e0 outCount=0x31b5e0 provider=0x31bad0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=149 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.246 +64246ms hook GPSSearch result call=134 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.246 +64246ms hook GPSRouteProducer result call=149 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:50.246 +64246ms hook GPSRouteProducer 0x44cc7c call=150 graph=0x591db1080 query=0x31d3d0 outResult=0x31d578 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1410.23,-746.659,11.6693,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:50.247 +64247ms hook GPSSearch 0x44f054 call=135 startHandle=0x1000009b00076 targetHandle=0x1000009a003a4 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1410.23,11.8,-746.659) outPath=0x31c540 outCount=0x31b240 provider=0x31c250 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=150 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.247 +64247ms hook GPSSearch result call=135 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=6 filterFiltered=0 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.248 +64248ms hook GPSRouteProducer result call=150 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2250404192/0x86227160 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.117 edgeCostMax=9.872 edgeCostAvg=3.843 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=6.773 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;2:3>3 cost=2.614 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078;3:3>3 cost=0.117 ret=0x44f457 cur=0x1000009b00078 dst=0x1000009b00077;4:3>3 cost=0.174 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009a003a4;5:3>255 cost=1.588 ret=0x44f629 cur=0x1000009a003a4 dst=0x0;6:3>3 cost=9.872 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b]
|
||||||
|
2026-06-21 03:15:50.248 +64248ms hook GPSRouteProducer 0x44cc7c call=151 graph=0x591db1080 query=0x31cfe0 outResult=0x31d140 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412,-742.531,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:50.248 +64248ms hook GPSSearch 0x44f054 call=136 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412,11.8,-742.531) outPath=0x31c150 outCount=0x31ae50 provider=0x31be60 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=151 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.249 +64249ms hook GPSSearch result call=136 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.249 +64249ms hook GPSRouteProducer result call=151 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:50.252 +64252ms hook GPSRouteProducer 0x44cc7c call=152 graph=0x591db1080 query=0x793bf8c0 outResult=0x793bf860 query_start00=(-1416.4,-741.981,11.6252,1) query_end10=(-1412.68,-742.428,11.626,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:50.253 +64253ms hook GPSSearch 0x44f054 call=137 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1416.4,11.8,-741.981) targetPoint=(-1412.68,11.8,-742.428) outPath=0x793be980 outCount=0x793bd680 provider=0x793bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=152 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:50.253 +64253ms hook GPSSearch result call=137 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:50.253 +64253ms hook GPSRouteProducer result call=152 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:51.037 +65037ms hook GPSRouteProducer 0x44cc7c call=153 graph=0x591db1080 query=0x795bf880 outResult=0x795bf810 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.93,-662.119,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2036070864/0x795bf9d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:51.038 +65038ms hook GPSSearch 0x44f054 call=138 startHandle=0x100000ac00058 targetHandle=0x100000ac00038 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.93,8.5,-662.119) outPath=0x795be940 outCount=0x795bd640 provider=0x795bdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=153 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.039 +65039ms hook GPSSearch result call=138 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=0 filterFiltered=11 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.039 +65039ms hook GPSRouteProducer result call=153 value=0x42ae6120 out_u0c=9/0x9 out_u1c=4/0x4 out_u20=2869746752/0xab0cdc40 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.080 edgeCostMax=3.577 edgeCostAvg=1.415 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.093 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.331 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.204 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.121 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.602 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.577 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.303 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
|
||||||
|
2026-06-21 03:15:51.039 +65039ms hook GPSRouteProducer 0x44cc7c call=154 graph=0x591db1080 query=0x795bf430 outResult=0x795bf5d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.89,-659.112,8.22555,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:51.039 +65039ms hook GPSSearch 0x44f054 call=139 startHandle=0x100000ac00038 targetHandle=0x100000ac0007a graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.89,8.5,-659.112) outPath=0x795be5a0 outCount=0x795bd2a0 provider=0x795be2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=154 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.040 +65040ms hook GPSSearch result call=139 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=9 filterPass=9 filterFail=0 filterBase=9 filterFiltered=0 filterPassClasses=[3:9] filterFailClasses=[none] filterPassMaskBits=[0:9,1:9] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.040 +65040ms hook GPSRouteProducer result call=154 value=0x42ae6120 out_u0c=8/0x8 out_u1c=5/0x5 out_u20=2894404720/0xac851c70 out_u24=1/0x1 out_u2c=5/0x5 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=10 edgeCostMin=0.001 edgeCostMax=3.137 edgeCostAvg=0.930 edgeSrcClasses=[3:10] edgeDstClasses=[3:9,invalid:1] edgeRetRvas=[0x44f457:9,0x44f629:1] edgeSamples=[0:3>3 cost=0.296 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.218 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.009 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.035 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.230 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.001 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.529 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.433 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
|
||||||
|
2026-06-21 03:15:51.040 +65040ms hook GPSRouteProducer 0x44cc7c call=155 graph=0x591db1080 query=0x795bf040 outResult=0x795bf1a0 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.93,-662.119,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:51.041 +65041ms hook GPSSearch 0x44f054 call=140 startHandle=0x100000ac00058 targetHandle=0x100000ac00038 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.93,8.5,-662.119) outPath=0x795be1b0 outCount=0x795bceb0 provider=0x795bdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=155 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.041 +65041ms hook GPSSearch result call=140 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=11 filterPass=11 filterFail=0 filterBase=11 filterFiltered=0 filterPassClasses=[3:11] filterFailClasses=[none] filterPassMaskBits=[0:11,1:11] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.042 +65042ms hook GPSRouteProducer result call=155 value=0x42ae6120 out_u0c=9/0x9 out_u1c=4/0x4 out_u20=2869746752/0xab0cdc40 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=12 edgeCostMin=0.080 edgeCostMax=3.577 edgeCostAvg=1.415 edgeSrcClasses=[3:12] edgeDstClasses=[3:11,invalid:1] edgeRetRvas=[0x44f457:11,0x44f629:1] edgeSamples=[0:3>3 cost=0.093 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.331 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.204 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.121 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.602 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.577 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.303 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
|
||||||
|
2026-06-21 03:15:51.048 +65048ms hook GPSRouteProducer 0x44cc7c call=156 graph=0x591db1080 query=0x797ff8c0 outResult=0x797ff860 query_start00=(-1318.14,-666.522,8.22216,1) query_end10=(-1318.8,-662.779,8.24229,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1065353232/0x3f800010 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:51.049 +65049ms hook GPSSearch 0x44f054 call=141 startHandle=0x100000ac00058 targetHandle=0x100000ac00049 graph=0x1a18268e0 startPoint=(-1318.14,8.5,-666.522) targetPoint=(-1318.8,8.5,-662.779) outPath=0x797fe980 outCount=0x797fd680 provider=0x797fdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=156 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.049 +65049ms hook GPSSearch result call=141 value=0x40000000 hasOutCount=1 outCount=6 filterCalls=8 filterPass=8 filterFail=0 filterBase=0 filterFiltered=8 filterPassClasses=[3:8] filterFailClasses=[none] filterPassMaskBits=[0:8,1:8] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.049 +65049ms hook GPSRouteProducer result call=156 value=0x42ae6120 out_u0c=7/0x7 out_u1c=4/0x4 out_u20=2890050400/0xac42ab60 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=9 edgeCostMin=0.092 edgeCostMax=3.567 edgeCostAvg=1.561 edgeSrcClasses=[3:9] edgeDstClasses=[3:8,invalid:1] edgeRetRvas=[0x44f457:8,0x44f629:1] edgeSamples=[0:3>3 cost=0.092 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00057;1:3>3 cost=3.328 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00031;2:3>3 cost=3.352 ret=0x44f457 cur=0x100000ac00058 dst=0x100000ac00055;3:3>3 cost=0.203 ret=0x44f457 cur=0x100000ac00057 dst=0x100000ac00056;4:3>3 cost=1.111 ret=0x44f457 cur=0x100000ac00056 dst=0x100000ac0004e;5:3>3 cost=1.615 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004b;6:3>3 cost=3.567 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f;7:3>3 cost=0.302 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac00049]
|
||||||
|
2026-06-21 03:15:51.188 +65188ms hook GPSRouteProducer 0x44cc7c call=157 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1397.9,-764.371,11.7542,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1128140288/0x433e0e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:51.189 +65189ms hook GPSSearch 0x44f054 call=142 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1397.9,11.8252,-764.371) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=157 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.189 +65189ms hook GPSSearch result call=142 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=0 filterFiltered=2 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.189 +65189ms hook GPSRouteProducer result call=157 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2952780288/0xafffda00 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.836 edgeCostMax=3.525 edgeCostAvg=2.604 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.836 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=2.452 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
|
||||||
|
2026-06-21 03:15:51.190 +65190ms hook GPSRouteProducer 0x44cc7c call=158 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1406.1,-764.159,11.7559,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1108929280/0x4218eb00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:51.190 +65190ms hook GPSSearch 0x44f054 call=143 startHandle=0x1000009a00274 targetHandle=0x1000009a00210 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1406.1,11.8,-764.159) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=158 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.190 +65190ms hook GPSSearch result call=143 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.191 +65191ms hook GPSRouteProducer result call=158 value=0x42ae6120 out_u0c=5/0x5 out_u1c=3/0x3 out_u20=2951956848/0xaff34970 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.090 edgeCostMax=3.704 edgeCostAvg=1.699 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=1.247 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=2.936 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>3 cost=1.802 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a0020e;3:3>3 cost=3.704 ret=0x44f457 cur=0x1000009a00211 dst=0x1000009a00212;4:3>3 cost=0.090 ret=0x44f457 cur=0x1000009a00212 dst=0x1000009a00210;5:3>255 cost=0.417 ret=0x44f629 cur=0x1000009a00210 dst=0x0]
|
||||||
|
2026-06-21 03:15:51.191 +65191ms hook GPSRouteProducer 0x44cc7c call=159 graph=0x591db1080 query=0x79e7f190 outResult=0x79e7f438 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1399.76,-760.302,11.7551,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1101247488/0x41a3b400 query_ptr98=0 query_ptra0=0 query_flagsa8=3353938256/0xc7e90950 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:51.192 +65192ms hook GPSSearch 0x44f054 call=144 startHandle=0x1000009a00274 targetHandle=0x1000009a00275 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1399.76,11.9356,-760.302) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=159 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.192 +65192ms hook GPSSearch result call=144 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[3:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.192 +65192ms hook GPSRouteProducer result call=159 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2951956848/0xaff34970 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.956 edgeCostMax=3.905 edgeCostAvg=2.833 edgeSrcClasses=[3:5] edgeDstClasses=[3:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=2.193 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>3 cost=3.586 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00275;3:3>255 cost=0.956 ret=0x44f629 cur=0x1000009a00275 dst=0x0;4:3>3 cost=3.905 ret=0x44f457 cur=0x1000009a00276 dst=0x1000009a00271]
|
||||||
|
2026-06-21 03:15:51.192 +65192ms hook GPSRouteProducer 0x44cc7c call=160 graph=0x591db1080 query=0x79e7f140 outResult=0x79e7f2a0 query_start00=(-1401.43,-767.157,11.7852,1) query_end10=(-1397.9,-764.371,11.7542,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:51.193 +65193ms hook GPSSearch 0x44f054 call=145 startHandle=0x1000009a00274 targetHandle=0x1000009a00276 graph=0x1a1826b10 startPoint=(-1401.42,11.8,-766.826) targetPoint=(-1397.9,11.8252,-764.371) outPath=0x79e7e2b0 outCount=0x79e7cfb0 provider=0x79e7dfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=160 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:51.193 +65193ms hook GPSSearch result call=145 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=2 filterPass=2 filterFail=0 filterBase=2 filterFiltered=0 filterPassClasses=[3:2] filterFailClasses=[none] filterPassMaskBits=[0:2,1:2] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:51.193 +65193ms hook GPSRouteProducer result call=160 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2952772800/0xafffbcc0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=3 edgeCostMin=1.836 edgeCostMax=3.525 edgeCostAvg=2.604 edgeSrcClasses=[3:3] edgeDstClasses=[3:2,invalid:1] edgeRetRvas=[0x44f457:2,0x44f629:1] edgeSamples=[0:3>3 cost=3.525 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00211;1:3>3 cost=1.836 ret=0x44f457 cur=0x1000009a00274 dst=0x1000009a00276;2:3>255 cost=2.452 ret=0x44f629 cur=0x1000009a00276 dst=0x0]
|
||||||
|
2026-06-21 03:15:52.232 +66232ms hook GPSRouteProducer 0x44cc7c call=161 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.496,7.54309,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1138495488/0x43dc1000 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:52.232 +66232ms hook GPSSearch 0x44f054 call=146 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.496) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=161 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:52.233 +66233ms hook GPSSearch result call=146 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=0 filterFiltered=4 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:52.233 +66233ms hook GPSRouteProducer result call=161 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2975534352/0xb15b0d10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.728 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.266 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
|
||||||
|
2026-06-21 03:15:52.233 +66233ms hook GPSRouteProducer 0x44cc7c call=162 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.88,-692.499,7.58709,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1160828928/0x4530d800 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:52.234 +66234ms hook GPSSearch 0x44f054 call=147 startHandle=0x100000ab00135 targetHandle=0x100000ab0013b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.88,7.9,-692.499) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=162 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:52.234 +66234ms hook GPSSearch result call=147 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[5:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:52.234 +66234ms hook GPSRouteProducer result call=162 value=0x42ae6120 out_u0c=4/0x4 out_u1c=3/0x3 out_u20=2958023808/0xb04fdc80 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.156 edgeCostMax=2.881 edgeCostAvg=1.034 edgeSrcClasses=[5:6] edgeDstClasses=[5:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:5>5 cost=0.156 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.838 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.594 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.554 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>5 cost=0.181 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;5:5>255 cost=2.881 ret=0x44f629 cur=0x100000ab0013b dst=0x0]
|
||||||
|
2026-06-21 03:15:52.235 +66235ms hook GPSRouteProducer 0x44cc7c call=163 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1317.22,-682.448,8.2223,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1117320704/0x4298f600 query_ptr98=0 query_ptra0=0 query_flagsa8=2828732464/0xa89b0830 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:52.235 +66235ms hook GPSSearch 0x44f054 call=148 startHandle=0x100000ab00135 targetHandle=0x100000ab0016b graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1317.22,8.5,-682.448) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=163 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:52.237 +66237ms hook GPSSearch result call=148 value=0x40000000 hasOutCount=1 outCount=17 filterCalls=40 filterPass=40 filterFail=0 filterBase=0 filterFiltered=40 filterPassClasses=[3:7,5:33] filterFailClasses=[none] filterPassMaskBits=[0:40,1:40] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:52.237 +66237ms hook GPSRouteProducer result call=163 value=0x42ae6120 out_u0c=15/0xf out_u1c=8/0x8 out_u20=3064144336/0xb6a321d0 out_u24=5/0x5 out_u2c=8/0x8 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=41 edgeCostMin=0.043 edgeCostMax=12.947 edgeCostAvg=1.926 edgeSrcClasses=[3:8,5:33] edgeDstClasses=[3:7,5:33,invalid:1] edgeRetRvas=[0x44f457:40,0x44f629:1] edgeSamples=[0:5>5 cost=0.296 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=2.136 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=0.487 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.083 ret=0x44f457 cur=0x100000ab0016d dst=0x100000ab0013b;4:5>5 cost=5.048 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00154;5:5>5 cost=0.991 ret=0x44f457 cur=0x100000ab0013b dst=0x100000ab00008;6:5>5 cost=0.307 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;7:5>5 cost=0.353 ret=0x44f457 cur=0x100000ab00140 dst=0x100000ab0013f]
|
||||||
|
2026-06-21 03:15:52.237 +66237ms hook GPSRouteProducer 0x44cc7c call=164 graph=0x591db1080 query=0x793bf140 outResult=0x793bf2a0 query_start00=(-1326.15,-690.519,7.73461,1) query_end10=(-1326.74,-688.496,7.54309,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:52.237 +66237ms hook GPSSearch 0x44f054 call=149 startHandle=0x100000ab00135 targetHandle=0x100000ab00140 graph=0x1a18268e0 startPoint=(-1326.15,7.9,-690.519) targetPoint=(-1326.74,7.9,-688.496) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=164 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:52.238 +66238ms hook GPSSearch result call=149 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=4 filterPass=4 filterFail=0 filterBase=4 filterFiltered=0 filterPassClasses=[5:4] filterFailClasses=[none] filterPassMaskBits=[0:4,1:4] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:52.238 +66238ms hook GPSRouteProducer result call=164 value=0x42ae6120 out_u0c=5/0x5 out_u1c=4/0x4 out_u20=2975534352/0xb15b0d10 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=5 edgeCostMin=0.211 edgeCostMax=1.530 edgeCostAvg=0.728 edgeSrcClasses=[5:5] edgeDstClasses=[5:4,invalid:1] edgeRetRvas=[0x44f457:4,0x44f629:1] edgeSamples=[0:5>5 cost=0.211 ret=0x44f457 cur=0x100000ab00135 dst=0x100000ab0016c;1:5>5 cost=0.980 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0013e;2:5>5 cost=1.530 ret=0x44f457 cur=0x100000ab0016c dst=0x100000ab0016d;3:5>5 cost=0.652 ret=0x44f457 cur=0x100000ab0013e dst=0x100000ab00140;4:5>255 cost=0.266 ret=0x44f629 cur=0x100000ab00140 dst=0x0]
|
||||||
|
2026-06-21 03:15:53.201 +67201ms hook GPSRouteProducer 0x44cc7c call=165 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.88,-658.339,8.22676,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1109801728/0x42263b00 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.201 +67201ms hook GPSSearch 0x44f054 call=150 startHandle=0x100000ac00038 targetHandle=0x100000ac0008f graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.88,8.5,-658.339) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=165 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.202 +67202ms hook GPSSearch result call=150 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.202 +67202ms hook GPSRouteProducer result call=165 value=0x42ae6120 out_u0c=6/0x6 out_u1c=4/0x4 out_u20=2947834384/0xafb46210 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.010 edgeCostMax=3.233 edgeCostAvg=0.962 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.348 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.281 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.163 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.378 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.159 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.010 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.484 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.064 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
|
||||||
|
2026-06-21 03:15:53.203 +67203ms hook GPSRouteProducer 0x44cc7c call=166 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.91,-666.112,8.22224,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1062115328/0x3f4e9800 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.203 +67203ms hook GPSSearch 0x44f054 call=151 startHandle=0x100000ac00038 targetHandle=0x100000ac0004e graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.91,8.5,-666.112) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=166 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.204 +67204ms hook GPSSearch result call=151 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.204 +67204ms hook GPSRouteProducer result call=166 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2202641520/0x8349a470 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.040 edgeCostMax=2.971 edgeCostAvg=1.003 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=0.370 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.095 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.040 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=2.174 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=1.081 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.288 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>255 cost=2.971 ret=0x44f629 cur=0x100000ac0004e dst=0x0]
|
||||||
|
2026-06-21 03:15:53.204 +67204ms hook GPSRouteProducer 0x44cc7c call=167 graph=0x591db1080 query=0x79aff230 outResult=0x79aff4d8 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1325.5,-651.884,7.63096,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1157746944/0x4501d100 query_ptr98=0 query_ptra0=0 query_flagsa8=3369068304/0xc8cfe710 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.204 +67204ms hook GPSSearch 0x44f054 call=152 startHandle=0x100000ac00038 targetHandle=0x100000ac000b3 graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1325.5,7.9,-651.884) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afd540 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=167 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.208 +67208ms hook GPSSearch result call=152 value=0x40000000 hasOutCount=1 outCount=25 filterCalls=115 filterPass=115 filterFail=0 filterBase=0 filterFiltered=115 filterPassClasses=[3:93,5:22] filterFailClasses=[none] filterPassMaskBits=[0:115,1:115] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.209 +67209ms hook GPSRouteProducer result call=167 value=0x42ae6120 out_u0c=20/0x14 out_u1c=10/0xa out_u20=3240126384/0xc12067b0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=116 edgeCostMin=0.010 edgeCostMax=12.034 edgeCostAvg=1.412 edgeSrcClasses=[3:94,5:22] edgeDstClasses=[3:93,5:22,invalid:1] edgeRetRvas=[0x44f457:115,0x44f629:1] edgeSamples=[0:3>3 cost=0.370 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.086 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.035 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=2.170 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=1.147 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.287 ret=0x44f457 cur=0x100000ac0004b dst=0x100000ac0004e;6:3>3 cost=3.258 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac00056;7:3>3 cost=5.458 ret=0x44f457 cur=0x100000ac0004e dst=0x100000ac0004f]
|
||||||
|
2026-06-21 03:15:53.209 +67209ms hook GPSRouteProducer 0x44cc7c call=168 graph=0x591db1080 query=0x79aff1e0 outResult=0x79aff340 query_start00=(-1318.93,-662.119,8.24229,1) query_end10=(-1316.88,-658.339,8.22676,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:53.209 +67209ms hook GPSSearch 0x44f054 call=153 startHandle=0x100000ac00038 targetHandle=0x100000ac0008f graph=0x1a18268e0 startPoint=(-1318.93,8.5,-662.119) targetPoint=(-1316.88,8.5,-658.339) outPath=0x79afe350 outCount=0x79afd050 provider=0x79afe060 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=168 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.210 +67210ms hook GPSSearch result call=153 value=0x40000000 hasOutCount=1 outCount=8 filterCalls=10 filterPass=10 filterFail=0 filterBase=10 filterFiltered=0 filterPassClasses=[3:10] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.210 +67210ms hook GPSRouteProducer result call=168 value=0x42ae6120 out_u0c=6/0x6 out_u1c=4/0x4 out_u20=2947834384/0xafb46210 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.010 edgeCostMax=3.233 edgeCostAvg=0.962 edgeSrcClasses=[3:11] edgeDstClasses=[3:10,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:3>3 cost=0.348 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac00035;1:3>3 cost=0.281 ret=0x44f457 cur=0x100000ac00038 dst=0x100000ac0003d;2:3>3 cost=0.163 ret=0x44f457 cur=0x100000ac0003d dst=0x100000ac00049;3:3>3 cost=0.378 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac00047;4:3>3 cost=2.159 ret=0x44f457 cur=0x100000ac00049 dst=0x100000ac0004b;5:3>3 cost=0.010 ret=0x44f457 cur=0x100000ac00047 dst=0x100000ac0007b;6:3>3 cost=1.484 ret=0x44f457 cur=0x100000ac0007b dst=0x100000ac0007c;7:3>3 cost=1.064 ret=0x44f457 cur=0x100000ac0007c dst=0x100000ac0007a]
|
||||||
|
2026-06-21 03:15:53.379 +67379ms hook GPSRouteProducer 0x44cc7c call=169 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.45,-707.231,7.7926,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1113935360/0x42654e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.380 +67380ms hook GPSSearch 0x44f054 call=154 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.45,7.9,-707.231) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=169 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.380 +67380ms hook GPSSearch result call=154 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.381 +67381ms hook GPSRouteProducer result call=169 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.007 edgeCostMax=4.517 edgeCostAvg=2.007 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.838 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.718 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=1.445 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.517 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=2.063 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.506 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.007 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
|
||||||
|
2026-06-21 03:15:53.381 +67381ms hook GPSRouteProducer 0x44cc7c call=170 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1409.19,-706.91,7.85331,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1118925056/0x42b17100 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.381 +67381ms hook GPSSearch 0x44f054 call=155 startHandle=0x1000009c00038 targetHandle=0x1000009c0004d graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1409.19,7.9,-706.91) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=170 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.382 +67382ms hook GPSSearch result call=155 value=0x40000000 hasOutCount=1 outCount=7 filterCalls=10 filterPass=10 filterFail=0 filterBase=0 filterFiltered=10 filterPassClasses=[4:1,5:9] filterFailClasses=[none] filterPassMaskBits=[0:10,1:10] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.382 +67382ms hook GPSRouteProducer result call=170 value=0x42ae6120 out_u0c=8/0x8 out_u1c=4/0x4 out_u20=2828050080/0xa8909ea0 out_u24=1/0x1 out_u2c=4/0x4 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=11 edgeCostMin=0.071 edgeCostMax=5.658 edgeCostAvg=1.961 edgeSrcClasses=[5:11] edgeDstClasses=[4:1,5:9,invalid:1] edgeRetRvas=[0x44f457:10,0x44f629:1] edgeSamples=[0:5>5 cost=3.346 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=0.406 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.071 ret=0x44f457 cur=0x1000009c00039 dst=0x1000009c00058;3:5>4 cost=5.658 ret=0x44f457 cur=0x1000009c00039 dst=0x1000009c00010;4:5>5 cost=0.615 ret=0x44f457 cur=0x1000009c00058 dst=0x1000009c00059;5:5>5 cost=0.455 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00057;6:5>5 cost=4.941 ret=0x44f457 cur=0x1000009c00059 dst=0x1000009c00056;7:5>5 cost=2.859 ret=0x44f457 cur=0x1000009c00057 dst=0x1000009c00047]
|
||||||
|
2026-06-21 03:15:53.382 +67382ms hook GPSRouteProducer 0x44cc7c call=171 graph=0x591db1080 query=0x79d7f190 outResult=0x79d7f438 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.43,-706.532,7.7926,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1165527552/0x45788a00 query_ptr98=0 query_ptra0=0 query_flagsa8=3113972432/0xb99b72d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.382 +67382ms hook GPSSearch 0x44f054 call=156 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.43,7.9,-706.532) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7d4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=171 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.383 +67383ms hook GPSSearch result call=156 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=0 filterFiltered=7 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.383 +67383ms hook GPSRouteProducer result call=171 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.014 edgeCostMax=4.757 edgeCostAvg=1.964 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.763 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.728 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=0.931 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.757 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=1.716 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.836 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.014 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
|
||||||
|
2026-06-21 03:15:53.383 +67383ms hook GPSRouteProducer 0x44cc7c call=172 graph=0x591db1080 query=0x79d7f140 outResult=0x79d7f2a0 query_start00=(-1403.37,-704.101,7.80267,1) query_end10=(-1397.43,-706.532,7.7926,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:53.383 +67383ms hook GPSSearch 0x44f054 call=157 startHandle=0x1000009c00038 targetHandle=0x1000009c00035 graph=0x1a1826a30 startPoint=(-1403.37,7.9,-704.5) targetPoint=(-1397.43,7.9,-706.532) outPath=0x79d7e2b0 outCount=0x79d7cfb0 provider=0x79d7dfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=172 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.384 +67384ms hook GPSSearch result call=157 value=0x40000000 hasOutCount=1 outCount=5 filterCalls=7 filterPass=7 filterFail=0 filterBase=7 filterFiltered=0 filterPassClasses=[5:7] filterFailClasses=[none] filterPassMaskBits=[0:7,1:7] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.384 +67384ms hook GPSRouteProducer result call=172 value=0x42ae6120 out_u0c=6/0x6 out_u1c=3/0x3 out_u20=2828226960/0xa8935190 out_u24=1/0x1 out_u2c=3/0x3 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=8 edgeCostMin=0.014 edgeCostMax=4.757 edgeCostAvg=1.964 edgeSrcClasses=[5:8] edgeDstClasses=[5:7,invalid:1] edgeRetRvas=[0x44f457:7,0x44f629:1] edgeSamples=[0:5>5 cost=1.763 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c0002d;1:5>5 cost=2.965 ret=0x44f457 cur=0x1000009c00038 dst=0x1000009c00039;2:5>5 cost=0.728 ret=0x44f457 cur=0x1000009c0002d dst=0x1000009c0002f;3:5>5 cost=0.931 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002e;4:5>5 cost=4.757 ret=0x44f457 cur=0x1000009c0002f dst=0x1000009c0002c;5:5>5 cost=1.716 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c0002a;6:5>5 cost=2.836 ret=0x44f457 cur=0x1000009c0002e dst=0x1000009c00035;7:5>255 cost=0.014 ret=0x44f629 cur=0x1000009c00035 dst=0x0]
|
||||||
|
2026-06-21 03:15:53.536 +67536ms hook GPSRouteProducer 0x44cc7c call=173 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1419.05,-740.994,11.6251,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1121695744/0x42dbb800 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.536 +67536ms hook GPSSearch 0x44f054 call=158 startHandle=0x1000009b00076 targetHandle=0x1000009b00074 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1419.05,11.8,-740.994) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=173 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.536 +67536ms hook GPSSearch result call=158 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.537 +67537ms hook GPSRouteProducer result call=173 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.732 edgeCostMax=10.199 edgeCostAvg=5.794 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=6.485 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>255 cost=0.732 ret=0x44f629 cur=0x1000009b00074 dst=0x0;2:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;3:3>3 cost=10.199 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
|
||||||
|
2026-06-21 03:15:53.537 +67537ms hook GPSRouteProducer 0x44cc7c call=174 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1407.38,-747.618,11.7052,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1088543488/0x40e1db00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.537 +67537ms hook GPSSearch 0x44f054 call=159 startHandle=0x1000009b00076 targetHandle=0x1000009a003a4 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1407.38,11.8,-747.618) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=174 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.538 +67538ms hook GPSSearch result call=159 value=0x40000000 hasOutCount=1 outCount=4 filterCalls=6 filterPass=6 filterFail=0 filterBase=0 filterFiltered=6 filterPassClasses=[3:6] filterFailClasses=[none] filterPassMaskBits=[0:6,1:6] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.538 +67538ms hook GPSRouteProducer result call=174 value=0x42ae6120 out_u0c=5/0x5 out_u1c=1/0x1 out_u20=2861228440/0xaa8ae198 out_u24=1/0x1 out_u2c=1/0x1 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=7 edgeCostMin=0.160 edgeCostMax=8.689 edgeCostAvg=3.901 edgeSrcClasses=[3:7] edgeDstClasses=[3:6,invalid:1] edgeRetRvas=[0x44f457:6,0x44f629:1] edgeSamples=[0:3>3 cost=5.990 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00074;1:3>3 cost=5.761 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;2:3>3 cost=3.204 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078;3:3>3 cost=0.160 ret=0x44f457 cur=0x1000009b00078 dst=0x1000009b00077;4:3>3 cost=0.240 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009a003a4;5:3>255 cost=3.265 ret=0x44f629 cur=0x1000009a003a4 dst=0x0;6:3>3 cost=8.689 ret=0x44f457 cur=0x1000009b00077 dst=0x1000009b0004b]
|
||||||
|
2026-06-21 03:15:53.538 +67538ms hook GPSRouteProducer 0x44cc7c call=175 graph=0x591db1080 query=0x793bf190 outResult=0x793bf438 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1405.99,-741.039,11.7501,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1099763200/0x418d0e00 query_ptr98=0 query_ptra0=0 query_flagsa8=3353937712/0xc7e90730 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:53.538 +67538ms hook GPSSearch 0x44f054 call=160 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1405.99,11.8,-741.039) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bd4a0 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=175 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.539 +67539ms hook GPSSearch result call=160 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.539 +67539ms hook GPSRouteProducer result call=175 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:53.539 +67539ms hook GPSRouteProducer 0x44cc7c call=176 graph=0x591db1080 query=0x793bf140 outResult=0x793bf2a0 query_start00=(-1412,-742.531,11.626,1) query_end10=(-1405.99,-741.039,11.7501,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:53.539 +67539ms hook GPSSearch 0x44f054 call=161 startHandle=0x1000009b00076 targetHandle=0x1000009b00076 graph=0x1a18268e0 startPoint=(-1412,11.8,-742.531) targetPoint=(-1405.99,11.8,-741.039) outPath=0x793be2b0 outCount=0x793bcfb0 provider=0x793bdfc0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=176 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:53.540 +67540ms hook GPSSearch result call=161 value=0x40000000 hasOutCount=1 outCount=1 filterCalls=0 filterPass=0 filterFail=0 filterBase=0 filterFiltered=0 filterPassClasses=[none] filterFailClasses=[none] filterPassMaskBits=[none] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:53.540 +67540ms hook GPSRouteProducer result call=176 value=0x42ae6120 out_u0c=2/0x2 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=5/0x5 out_flags40=1/0x1 out_state42=1 edgeCostCalls=0 edgeSrcClasses=[none] edgeDstClasses=[none] edgeRetRvas=[none] edgeSamples=[none]
|
||||||
|
2026-06-21 03:15:58.206 +72206ms hook GPSRouteProducer 0x44cc7c call=177 graph=0x591db1080 query=0x79afe620 outResult=0x79afe780 query_start00=(-1396.92,-782.056,3.12725,1) query_end10=(-1398.99,-775.06,3.12725,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:58.206 +72206ms hook GPSSearch 0x44f054 call=162 startHandle=0x100000990013a targetHandle=0x1000009a00288 graph=0x1a1826a30 startPoint=(-1396.92,3.4,-782.056) targetPoint=(-1398.99,3.4,-775.06) outPath=0x79afd790 outCount=0x79afc490 provider=0x79afd4a0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=177 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:58.207 +72207ms hook GPSSearch result call=162 value=0x40000000 hasOutCount=1 outCount=11 filterCalls=15 filterPass=15 filterFail=0 filterBase=15 filterFiltered=0 filterPassClasses=[1:14,15:1] filterFailClasses=[none] filterPassMaskBits=[0:15,1:15] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:58.207 +72207ms hook GPSRouteProducer result call=177 value=0x42ae6120 out_u0c=11/0xb out_u1c=10/0xa out_u20=3086684352/0xb7fb10c0 out_u24=5/0x5 out_u2c=10/0xa out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=16 edgeCostMin=0.005 edgeCostMax=6.795 edgeCostAvg=2.064 edgeSrcClasses=[1:16] edgeDstClasses=[1:14,15:1,invalid:1] edgeRetRvas=[0x44f457:15,0x44f629:1] edgeSamples=[0:1>1 cost=1.052 ret=0x44f457 cur=0x100000990013a dst=0x100000990013c;1:1>1 cost=0.005 ret=0x44f457 cur=0x100000990013c dst=0x1000009900142;2:1>1 cost=0.038 ret=0x44f457 cur=0x1000009900142 dst=0x100000990013f;3:1>1 cost=2.295 ret=0x44f457 cur=0x1000009900142 dst=0x1000009900143;4:1>1 cost=3.261 ret=0x44f457 cur=0x100000990013f dst=0x100000990013b;5:1>1 cost=1.000 ret=0x44f457 cur=0x1000009900143 dst=0x1000009900145;6:1>1 cost=0.294 ret=0x44f457 cur=0x1000009900145 dst=0x1000009900148;7:1>15 cost=4.875 ret=0x44f457 cur=0x1000009900148 dst=0x10000099000c5]
|
||||||
|
2026-06-21 03:15:59.143 +73143ms hook GPSRouteProducer 0x44cc7c call=178 graph=0x591db1080 query=0x79bff880 outResult=0x79bff810 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1410.61,-735.368,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0 query_ptra0=0 query_flagsa8=2042624464/0x79bff9d0 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:59.143 +73143ms hook GPSSearch 0x44f054 call=163 startHandle=0x1000009b00074 targetHandle=0x1000009b00075 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1410.61,11.8,-735.368) outPath=0x79bfe940 outCount=0x79bfd640 provider=0x79bfdb30 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[14:0.050] routeProducerCall=178 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:59.144 +73144ms hook GPSSearch result call=163 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=0 filterFiltered=5 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:59.144 +73144ms hook GPSRouteProducer result call=178 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.496 edgeCostMax=10.091 edgeCostAvg=4.233 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.701 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.758 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>3 cost=2.647 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;4:3>255 cost=0.496 ret=0x44f629 cur=0x1000009b00075 dst=0x0;5:3>3 cost=10.091 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
|
||||||
|
2026-06-21 03:15:59.145 +73145ms hook GPSRouteProducer 0x44cc7c call=179 graph=0x591db1080 query=0x79bff430 outResult=0x79bff5d8 query_start00=(-1410.61,-735.368,11.6246,1) query_end10=(-1409.19,-738.731,11.7224,1) query_f68=1.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=2139095056/0x7f800010 ret_rva=0xa4e84f
|
||||||
|
2026-06-21 03:15:59.145 +73145ms hook GPSSearch 0x44f054 call=164 startHandle=0x1000009b00075 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1410.61,11.8,-735.368) targetPoint=(-1409.19,11.8,-738.731) outPath=0x79bfe5a0 outCount=0x79bfd2a0 provider=0x79bfe2b0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=179 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:59.145 +73145ms hook GPSSearch result call=164 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=3 filterFiltered=0 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:59.146 +73146ms hook GPSRouteProducer result call=179 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.760 edgeCostMax=9.121 edgeCostAvg=3.383 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=0.760 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00071;1:3>3 cost=9.121 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b0006e;2:3>3 cost=0.871 ret=0x44f457 cur=0x1000009b00075 dst=0x1000009b00076;3:3>255 cost=2.780 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:15:59.146 +73146ms hook GPSRouteProducer 0x44cc7c call=180 graph=0x591db1080 query=0x79bff040 outResult=0x79bff1a0 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1410.61,-735.368,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=16/0x10 ret_rva=0x10cb385
|
||||||
|
2026-06-21 03:15:59.146 +73146ms hook GPSSearch 0x44f054 call=165 startHandle=0x1000009b00074 targetHandle=0x1000009b00075 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1410.61,11.8,-735.368) outPath=0x79bfe1b0 outCount=0x79bfceb0 provider=0x79bfdec0 provider_vtable=0x142ae6120 provider_vtable_rva=0x2ae6120 provider_slot08=0x140450b08 provider_slot08_rva=0x450b08 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=0/0x0 provider_nonunitMul=[none] routeProducerCall=180 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:59.147 +73147ms hook GPSSearch result call=165 value=0x40000000 hasOutCount=1 outCount=3 filterCalls=5 filterPass=5 filterFail=0 filterBase=5 filterFiltered=0 filterPassClasses=[3:5] filterFailClasses=[none] filterPassMaskBits=[0:5,1:5] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:59.147 +73147ms hook GPSRouteProducer result call=180 value=0x42ae6120 out_u0c=4/0x4 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1065353216/0x3f800000 out_flags40=1/0x1 out_state42=1 edgeCostCalls=6 edgeCostMin=0.496 edgeCostMax=10.091 edgeCostAvg=4.233 edgeSrcClasses=[3:6] edgeDstClasses=[3:5,invalid:1] edgeRetRvas=[0x44f457:5,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.701 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.758 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>3 cost=2.647 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00075;4:3>255 cost=0.496 ret=0x44f629 cur=0x1000009b00075 dst=0x0;5:3>3 cost=10.091 ret=0x44f457 cur=0x1000009b00076 dst=0x1000009b00078]
|
||||||
|
2026-06-21 03:15:59.151 +73151ms hook GPSRouteProducer 0x44cc7c call=181 graph=0x591db1080 query=0x793bf8c0 outResult=0x793bf860 query_start00=(-1414.5,-735.009,11.656,1) query_end10=(-1411.39,-735.333,11.6246,1) query_f68=0.000 query_f78=0.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=1/0x1 query_ptr98=0 query_ptra0=0 query_flagsa8=1040/0x410 ret_rva=0x6517d1
|
||||||
|
2026-06-21 03:15:59.151 +73151ms hook GPSSearch 0x44f054 call=166 startHandle=0x1000009b00074 targetHandle=0x1000009b00076 graph=0x1a1826a30 startPoint=(-1414.5,11.8,-735.009) targetPoint=(-1411.39,11.8,-735.333) outPath=0x793be980 outCount=0x793bd680 provider=0x793bdb70 provider_vtable=0x142ae60f8 provider_vtable_rva=0x2ae60f8 provider_slot08=0x14044ff68 provider_slot08_rva=0x44ff68 provider_slot10=0x14044f838 provider_slot10_rva=0x44f838 provider_mask108=1/0x1 provider_mask10a=8/0x8 provider_nonunitMul=[none] routeProducerCall=181 ret_rva=0x44d117
|
||||||
|
2026-06-21 03:15:59.152 +73152ms hook GPSSearch result call=166 value=0x40000000 hasOutCount=1 outCount=2 filterCalls=3 filterPass=3 filterFail=0 filterBase=0 filterFiltered=3 filterPassClasses=[3:3] filterFailClasses=[none] filterPassMaskBits=[0:3,1:3] filterFailMaskBits=[none]
|
||||||
|
2026-06-21 03:15:59.152 +73152ms hook GPSRouteProducer result call=181 value=0x42ae6120 out_u0c=3/0x3 out_u1c=0/0x0 out_u20=1119021512/0x42b2e9c8 out_u24=1/0x1 out_u2c=0/0x0 out_u30lo=0/0x0 out_u34hi=1/0x1 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.753 edgeCostMax=9.702 edgeCostAvg=3.621 edgeSrcClasses=[3:4] edgeDstClasses=[3:3,invalid:1] edgeRetRvas=[0x44f457:3,0x44f629:1] edgeSamples=[0:3>3 cost=9.702 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00070;1:3>3 cost=1.657 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00073;2:3>3 cost=0.753 ret=0x44f457 cur=0x1000009b00074 dst=0x1000009b00076;3:3>255 cost=2.371 ret=0x44f629 cur=0x1000009b00076 dst=0x0]
|
||||||
|
2026-06-21 03:16:09.545 +83545ms hook GPSRouteProducer 0x44cc7c call=182 graph=0x591db1080 query=0x795bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:09.545 +83545ms hook GPSRouteProducer result call=182 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2962737584/0xb097c9b0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.874 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.874 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:16:13.326 +87326ms hook GPSRouteProducer 0x44cc7c call=183 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:13.327 +87327ms hook GPSRouteProducer result call=183 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2855661840/0xaa35f110 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:16:16.457 +90457ms hook GPSRouteProducer 0x44cc7c call=184 graph=0x591db1080 query=0x79d7f770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:16.457 +90457ms hook GPSRouteProducer result call=184 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2908710720/0xad5f6740 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:16:19.036 +93036ms hook GPSRouteProducer 0x44cc7c call=185 graph=0x591db1080 query=0x79d7f770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:19.036 +93036ms hook GPSRouteProducer result call=185 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2959968656/0xb06d8990 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:16:36.364 +110364ms hook GPSRouteProducer 0x44cc7c call=186 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:36.364 +110364ms hook GPSRouteProducer result call=186 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2855653488/0xaa35d070 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:16:50.186 +124186ms hook GPSRouteProducer 0x44cc7c call=187 graph=0x591db1080 query=0x794bf770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:16:50.187 +124187ms hook GPSRouteProducer result call=187 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2940823216/0xaf4966b0 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:17:01.478 +135478ms hook GPSRouteProducer 0x44cc7c call=188 graph=0x591db1080 query=0x798ff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:17:01.478 +135478ms hook GPSRouteProducer result call=188 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2964960768/0xb0b9b600 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.874 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.874 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:17:10.859 +143859ms hook GPSRouteProducer 0x44cc7c call=189 graph=0x591db1080 query=0x79aff770 outResult=0x1a765f170 query_start00=(-1347.14,-716.362,7.96501,1) query_end10=(-1347.06,-714.148,7.535,1) query_f68=0.000 query_f78=10.000 query_f88=0.000 query_f8c=0/0x0 query_f90=2/0x2 query_f94=0/0x0 query_ptr98=0x1408d76c4 query_ptr98_rva=0x8d76c4 query_ptra0=0x1a2408280 query_flagsa8=1082995346/0x408d3292 ret_rva=0x70aa22
|
||||||
|
2026-06-21 03:17:10.860 +143860ms hook GPSRouteProducer result call=189 value=0x42ae6120 out_u0c=3/0x3 out_u1c=2/0x2 out_u20=2983784288/0xb1d8ef60 out_u24=1/0x1 out_u2c=2/0x2 out_u30lo=0/0x0 out_u34hi=0/0x0 out_flags40=1/0x1 out_state42=1 edgeCostCalls=4 edgeCostMin=0.352 edgeCostMax=1.873 edgeCostAvg=0.948 edgeSrcClasses=[4:4] edgeDstClasses=[4:3,invalid:1] edgeRetRvas=[0x8d74d3:3,0x8d76b0:1] edgeSamples=[0:4>4 cost=0.695 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500109;1:4>4 cost=1.873 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a500106;2:4>255 cost=0.352 ret=0x8d76b0 cur=0x100000a500106 dst=0x0;3:4>4 cost=0.870 ret=0x8d74d3 cur=0x100000a500128 dst=0x100000a50013b]
|
||||||
|
2026-06-21 03:17:24.175 +158175ms GameState Running OnExit app=0x31fb80
|
||||||
@@ -0,0 +1,137 @@
|
|||||||
|
2026-06-21 03:01:08.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff05e0000 sdk=0x7f7ccae8 runtime=2.3.1
|
||||||
|
2026-06-21 03:01:08.000 +0ms registered Running game-state callbacks
|
||||||
|
2026-06-21 03:01:08.007 +7ms hook attach GPSSearch 0x44f054 target=0x14044f054 rva=0x44f054 result=ok original=0x1018c0480
|
||||||
|
2026-06-21 03:01:27.499 +18499ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-21 03:01:27.524 +18524ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-21 03:01:27.531 +18531ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-21 03:01:27.538 +18538ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-21 03:01:27.545 +18545ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-21 03:01:27.552 +18552ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch applied patchCall=0 searchCall=0 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch applied patchCall=1 searchCall=1 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch restored patchCall=2 searchCall=0 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.427 +52427ms gps-provider-class-patch restored patchCall=3 searchCall=1 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch applied patchCall=4 searchCall=2 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch applied patchCall=5 searchCall=3 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch restored patchCall=6 searchCall=2 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.428 +52428ms gps-provider-class-patch restored patchCall=7 searchCall=3 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch applied patchCall=8 searchCall=4 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch applied patchCall=9 searchCall=5 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.429 +52429ms gps-provider-class-patch restored patchCall=10 searchCall=4 provider=0x79b3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.430 +52430ms gps-provider-class-patch restored patchCall=11 searchCall=5 provider=0x79a3d1c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=13 searchCall=7 provider=0x79c3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=15 searchCall=9 provider=0x79b3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch applied patchCall=17 searchCall=11 provider=0x66b7d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.431 +52431ms gps-provider-class-patch restored patchCall=18 searchCall=7 provider=0x79c3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch restored patchCall=19 searchCall=9 provider=0x79b3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch applied patchCall=14 searchCall=8 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch restored patchCall=20 searchCall=11 provider=0x66b7d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.432 +52432ms gps-provider-class-patch applied patchCall=22 searchCall=13 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch restored patchCall=23 searchCall=8 provider=0x31b750 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=24 searchCall=14 provider=0x79a3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch restored patchCall=26 searchCall=13 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=25 searchCall=15 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.433 +52433ms gps-provider-class-patch applied patchCall=16 searchCall=10 provider=0x79d3d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch restored patchCall=29 searchCall=14 provider=0x79a3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=28 searchCall=17 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=27 searchCall=16 provider=0x795fd7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch applied patchCall=21 searchCall=12 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.434 +52434ms gps-provider-class-patch restored patchCall=31 searchCall=15 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=32 searchCall=10 provider=0x79d3d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch applied patchCall=30 searchCall=18 provider=0x66a7d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=36 searchCall=12 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch restored patchCall=34 searchCall=17 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.435 +52435ms gps-provider-class-patch applied patchCall=38 searchCall=21 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=40 searchCall=22 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=37 searchCall=20 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch applied patchCall=41 searchCall=23 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch restored patchCall=43 searchCall=22 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.436 +52436ms gps-provider-class-patch restored patchCall=42 searchCall=21 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=33 searchCall=19 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=45 searchCall=23 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=46 searchCall=24 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch applied patchCall=12 searchCall=6 provider=0x7993d7a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=48 searchCall=19 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.437 +52437ms gps-provider-class-patch restored patchCall=50 searchCall=24 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=47 searchCall=25 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch restored patchCall=39 searchCall=18 provider=0x66a7d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=53 searchCall=28 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch restored patchCall=51 searchCall=6 provider=0x7993d7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.438 +52438ms gps-provider-class-patch applied patchCall=55 searchCall=29 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=52 searchCall=27 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch restored patchCall=56 searchCall=28 provider=0x79b3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=49 searchCall=26 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=57 searchCall=30 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch applied patchCall=60 searchCall=31 provider=0x79b3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.439 +52439ms gps-provider-class-patch restored patchCall=58 searchCall=29 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=59 searchCall=27 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=35 searchCall=16 provider=0x795fd7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=63 searchCall=31 provider=0x79b3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=62 searchCall=30 provider=0x66b7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch restored patchCall=61 searchCall=26 provider=0x79c3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.440 +52440ms gps-provider-class-patch applied patchCall=65 searchCall=33 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=67 searchCall=35 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=69 searchCall=37 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=70 searchCall=33 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch applied patchCall=64 searchCall=32 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=72 searchCall=37 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.441 +52441ms gps-provider-class-patch restored patchCall=54 searchCall=25 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=73 searchCall=38 provider=0x79c3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=68 searchCall=36 provider=0x66b7d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=71 searchCall=35 provider=0x79a3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=74 searchCall=32 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch restored patchCall=77 searchCall=38 provider=0x79c3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.442 +52442ms gps-provider-class-patch applied patchCall=66 searchCall=34 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=79 searchCall=41 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=76 searchCall=40 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=75 searchCall=39 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch restored patchCall=83 searchCall=41 provider=0x31a8c0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch applied patchCall=80 searchCall=42 provider=0x79a3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.443 +52443ms gps-provider-class-patch restored patchCall=78 searchCall=36 provider=0x66b7d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=82 searchCall=34 provider=0x79d3c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=86 searchCall=44 provider=0x31b3e0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=85 searchCall=39 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=84 searchCall=40 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=88 searchCall=45 provider=0x79d3d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch restored patchCall=87 searchCall=42 provider=0x79a3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.444 +52444ms gps-provider-class-patch applied patchCall=90 searchCall=46 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=92 searchCall=45 provider=0x79d3d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch applied patchCall=91 searchCall=47 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch applied patchCall=81 searchCall=43 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=89 searchCall=44 provider=0x31b3e0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=94 searchCall=47 provider=0x795fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.445 +52445ms gps-provider-class-patch restored patchCall=95 searchCall=43 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=96 searchCall=48 provider=0x795fd430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=97 searchCall=49 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=93 searchCall=46 provider=0x66a7c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=98 searchCall=48 provider=0x795fd430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch restored patchCall=99 searchCall=49 provider=0x7993c910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=100 searchCall=50 provider=0x66a7d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.446 +52446ms gps-provider-class-patch applied patchCall=101 searchCall=51 provider=0x7993d430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=102 searchCall=50 provider=0x66a7d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=103 searchCall=51 provider=0x7993d430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch restored patchCall=44 searchCall=20 provider=0x796fd7a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.447 +52447ms gps-provider-class-patch applied patchCall=104 searchCall=52 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch restored patchCall=105 searchCall=52 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch applied patchCall=106 searchCall=53 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch restored patchCall=107 searchCall=53 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.448 +52448ms gps-provider-class-patch applied patchCall=108 searchCall=54 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch restored patchCall=109 searchCall=54 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch applied patchCall=110 searchCall=55 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.449 +52449ms gps-provider-class-patch restored patchCall=111 searchCall=55 provider=0x796fc910 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.450 +52450ms gps-provider-class-patch applied patchCall=112 searchCall=56 provider=0x796fd430 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.450 +52450ms gps-provider-class-patch restored patchCall=113 searchCall=56 provider=0x796fd430 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.483 +52483ms gps-provider-class-patch applied patchCall=114 searchCall=57 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch restored patchCall=115 searchCall=57 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch applied patchCall=116 searchCall=58 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:01.484 +52484ms gps-provider-class-patch restored patchCall=117 searchCall=58 provider=0x795fe160 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:02.588 +53588ms gps-provider-class-patch applied patchCall=118 searchCall=59 provider=0x31c0d0 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:02.589 +53589ms gps-provider-class-patch restored patchCall=119 searchCall=59 provider=0x31c0d0 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:02.726 +53726ms gps-provider-class-patch applied patchCall=120 searchCall=60 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:02.726 +53726ms gps-provider-class-patch restored patchCall=121 searchCall=60 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch applied patchCall=122 searchCall=61 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:0.05,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch restored patchCall=123 searchCall=61 provider=0x79d3e120 provider_vtable_rva=0x2ae60f8 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:0.05,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch applied patchCall=124 searchCall=62 provider=0x79d3e8a0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.356 +56356ms gps-provider-class-patch restored patchCall=125 searchCall=62 provider=0x79d3e8a0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.357 +56357ms gps-provider-class-patch applied patchCall=126 searchCall=63 provider=0x79d3e4b0 provider_vtable_rva=0x2ae6120 current=[1:0.70,3:1.45,4:1.25,5:1.75,14:1.00,15:0.80] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
|
2026-06-21 03:02:04.357 +56357ms gps-provider-class-patch restored patchCall=127 searchCall=63 provider=0x79d3e4b0 provider_vtable_rva=0x2ae6120 current=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] original=[1:1.00,3:1.00,4:1.00,5:1.00,14:1.00,15:1.00] overrides=[1:0.70,3:1.45,4:1.25,5:1.75,15:0.80]
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
|
||||||
|
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
|
||||||
|
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
|
||||||
|
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
|
||||||
|
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:38:02.012 +216012ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.7
|
||||||
|
2026-06-27 05:39:00.783 +273783ms hook GPSQueryResultFetch 0x7094b8 call=40714 queryId=232 tracked=1 perQueryCall=4 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000f05e16af0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
|
||||||
|
2026-06-27 05:39:00.787 +273787ms hook GPSQueryResultFetch 0x7094b8 call=40715 queryId=232 tracked=1 perQueryCall=5 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a9000000003295980500000022000000220000000000000000000000f05e16af0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
|
||||||
|
2026-06-27 05:39:00.788 +273788ms hook GPSQueryResultFetch 0x7094b8 call=40716 queryId=232 tracked=1 perQueryCall=6 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a900000000000000003295980500000022000000000000000000000000000000f05e16af0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
|
||||||
|
2026-06-27 05:39:06.837 +279837ms hook GPSQueryResultFetch 0x7094b8 call=41405 queryId=239 tracked=1 perQueryCall=3 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x52069c outPath=0x66a7fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fda76600000000008e0e4401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=1722285312/0x66a7fd00 gpsResult_u50=5436771840/0x1440e8e00
|
||||||
|
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41406 queryId=239 tracked=1 perQueryCall=4 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000d0684fbf0500000027000000270000000000000000000000c0b434a20100000001fda76601000000008e0e4401000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6017252609/0x166a7fd01 gpsResult_u50=5436771840/0x1440e8e00
|
||||||
|
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41407 queryId=239 tracked=1 perQueryCall=5 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000d0684fbf0500000027000000000000000000000000000000c0b434a20100000001fda76602000000018e0e4401000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10312219905/0x266a7fd01 gpsResult_u50=5436771841/0x1440e8e01
|
||||||
|
2026-06-27 05:39:12.400 +285400ms hook GPSQueryResultFetch 0x7094b8 call=42032 queryId=245 tracked=1 perQueryCall=5 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:39:12.402 +285402ms hook GPSQueryResultFetch 0x7094b8 call=42033 queryId=245 tracked=1 perQueryCall=6 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb00000030c93abf050000002e0000002e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d300000000,0,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c00000000,0,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a7118700000000,0,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:39:12.403 +285403ms hook GPSQueryResultFetch 0x7094b8 call=42034 queryId=245 tracked=1 perQueryCall=7 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb0000000000000030c93abf050000002e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:39:16.274 +290274ms hook GPSQueryResultFetch 0x7094b8 call=42570 queryId=251 tracked=1 perQueryCall=4 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fd5f79000000000071114401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=2036333824/0x795ffd00 gpsResult_u50=5436961024/0x144117100
|
||||||
|
2026-06-27 05:39:16.279 +290279ms hook GPSQueryResultFetch 0x7094b8 call=42571 queryId=251 tracked=1 perQueryCall=5 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d6000000d600000080dae1a2050000001e0000001e0000000000000000000000c0b434a20100000001fd5f79010000000071114401000000983f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=214/0xd6 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6000000d6 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd6000000d6 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0;29:dee961a1ae096b36,0x01030007,0,212,214,41915c8e00000000,0,18.1702,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6331301121/0x1795ffd01 gpsResult_u50=5436961024/0x144117100
|
||||||
|
2026-06-27 05:39:16.280 +290280ms hook GPSQueryResultFetch 0x7094b8 call=42572 queryId=251 tracked=1 perQueryCall=6 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d60000000000000080dae1a2050000001e000000000000000000000000000000c0b434a20100000001fd5f79020000000171114401000000483f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd6 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10626268417/0x2795ffd01 gpsResult_u50=5436961025/0x144117101
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
|
||||||
|
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
|
||||||
|
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
|
||||||
|
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
|
||||||
|
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 983 KiB |
|
After Width: | Height: | Size: 1.3 MiB |
@@ -0,0 +1 @@
|
|||||||
|
ヘフL?
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
fff?
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
33�>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
333?
|
||||||
@@ -28,8 +28,8 @@ mkdir -p "${raw_dir}/${resource_dir}" "${json_dir}" "${patched_json_dir}" "${pat
|
|||||||
if [[ -f "${archive_path}" ]]; then
|
if [[ -f "${archive_path}" ]]; then
|
||||||
kark_path="${raw_dir}/${resource_file}.kark"
|
kark_path="${raw_dir}/${resource_file}.kark"
|
||||||
decompressed_base="${raw_dir}/${resource_file}.raw"
|
decompressed_base="${raw_dir}/${resource_file}.raw"
|
||||||
python3 tools/extract_archive_segment.py "${archive_path}" "${resource_hash}" "${kark_path}"
|
python3 contrib/re/tools/extract_archive_segment.py "${archive_path}" "${resource_hash}" "${kark_path}"
|
||||||
tools/cp77_toolbox.sh oodle decompress "${kark_path}" "${decompressed_base}" || true
|
contrib/re/tools/cp77_toolbox.sh oodle decompress "${kark_path}" "${decompressed_base}" || true
|
||||||
if [[ ! -f "${decompressed_base}.bin" ]]; then
|
if [[ ! -f "${decompressed_base}.bin" ]]; then
|
||||||
echo "failed to decompress ${kark_path}" >&2
|
echo "failed to decompress ${kark_path}" >&2
|
||||||
exit 1
|
exit 1
|
||||||
@@ -40,14 +40,14 @@ else
|
|||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tools/cp77_toolbox.sh convert serialize "${raw_dir}" --outpath "${json_dir}"
|
contrib/re/tools/cp77_toolbox.sh convert serialize "${raw_dir}" --outpath "${json_dir}"
|
||||||
|
|
||||||
python3 tools/patch_traffic_lanes.py "${json_dir}" "${patched_json_dir}" --copy-unchanged
|
python3 contrib/re/tools/patch_traffic_lanes.py "${json_dir}" "${patched_json_dir}" --copy-unchanged
|
||||||
|
|
||||||
tools/cp77_toolbox.sh convert deserialize "${patched_json_dir}" --outpath "${patched_raw_dir}"
|
contrib/re/tools/cp77_toolbox.sh convert deserialize "${patched_json_dir}" --outpath "${patched_raw_dir}"
|
||||||
|
|
||||||
cp "${patched_raw_dir}/${resource_file}" "${pack_root}/${resource_path}"
|
cp "${patched_raw_dir}/${resource_file}" "${pack_root}/${resource_path}"
|
||||||
|
|
||||||
tools/cp77_toolbox.sh pack "${pack_root}" --outpath "${packed_dir}"
|
contrib/re/tools/cp77_toolbox.sh pack "${pack_root}" --outpath "${packed_dir}"
|
||||||
|
|
||||||
echo "packed archive output: ${packed_dir}"
|
echo "packed archive output: ${packed_dir}"
|
||||||
@@ -9,7 +9,7 @@ fi
|
|||||||
archive_path=$1
|
archive_path=$1
|
||||||
output=${2:-traffic-resources.txt}
|
output=${2:-traffic-resources.txt}
|
||||||
|
|
||||||
tools/cp77_toolbox.sh archive --list \
|
contrib/re/tools/cp77_toolbox.sh archive --list \
|
||||||
--regex 'traffic.*persistent|persistent.*traffic|traffic.*lane|world.*traffic' \
|
--regex 'traffic.*persistent|persistent.*traffic|traffic.*lane|world.*traffic' \
|
||||||
"${archive_path}" \
|
"${archive_path}" \
|
||||||
> "${output}"
|
> "${output}"
|
||||||
@@ -268,7 +268,7 @@ def write_header(path: Path, spec: GridSpec, grid: list[list[str]], counts: dict
|
|||||||
f"constexpr uint32_t kSpatialRoadGridHeight = {spec.height};",
|
f"constexpr uint32_t kSpatialRoadGridHeight = {spec.height};",
|
||||||
"",
|
"",
|
||||||
"// Cell codes: H=highway, R=road, G=GPS-only, P=pavement, .=unknown.",
|
"// Cell codes: H=highway, R=road, G=GPS-only, P=pavement, .=unknown.",
|
||||||
"// Generated by tools/generate_spatial_edge_grid.py from all.traffic_persistent and all.lane_polygons.",
|
"// Generated by contrib/re/tools/generate_spatial_edge_grid.py from all.traffic_persistent and all.lane_polygons.",
|
||||||
f"// Counts: H={counts['H']} R={counts['R']} G={counts['G']} P={counts['P']} unknown={counts['.']}.",
|
f"// Counts: H={counts['H']} R={counts['R']} G={counts['G']} P={counts['P']} unknown={counts['.']}.",
|
||||||
"constexpr std::array<std::string_view, kSpatialRoadGridHeight> kSpatialRoadGridRows = {{",
|
"constexpr std::array<std::string_view, kSpatialRoadGridHeight> kSpatialRoadGridRows = {{",
|
||||||
]
|
]
|
||||||
@@ -289,16 +289,16 @@ def write_header(path: Path, spec: GridSpec, grid: list[list[str]], counts: dict
|
|||||||
|
|
||||||
def main() -> int:
|
def main() -> int:
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("--traffic-json", type=Path, default=Path("work/raw-segment-json/all.traffic_persistent.json"))
|
parser.add_argument("--traffic-json", type=Path, default=Path("contrib/re/work/raw-segment-json/all.traffic_persistent.json"))
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--lane-polygons-json",
|
"--lane-polygons-json",
|
||||||
type=Path,
|
type=Path,
|
||||||
default=Path("work/traffic-companions/json/all.lane_polygons.json"),
|
default=Path("contrib/re/work/traffic-companions/json/all.lane_polygons.json"),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--output",
|
"--output",
|
||||||
type=Path,
|
type=Path,
|
||||||
default=Path("red4ext/EdgeWeightGPS/src/GeneratedSpatialRoadGrid.hpp"),
|
default=Path("contrib/re/work/generated/GeneratedSpatialRoadGrid.hpp"),
|
||||||
)
|
)
|
||||||
parser.add_argument("--cell-size", type=float, default=16.0)
|
parser.add_argument("--cell-size", type=float, default=16.0)
|
||||||
parser.add_argument("--inflate-cells", type=int, default=0)
|
parser.add_argument("--inflate-cells", type=int, default=0)
|
||||||
@@ -6,6 +6,6 @@ game_dir="${CYBERPUNK2077_GAME_DIR:-/var/home/salt/.var/app/com.valvesoftware.St
|
|||||||
script_out="$game_dir/r6/scripts/EdgeWeightGPS"
|
script_out="$game_dir/r6/scripts/EdgeWeightGPS"
|
||||||
|
|
||||||
mkdir -p "$script_out"
|
mkdir -p "$script_out"
|
||||||
install -m 0644 "$repo_root/redscript/EdgeWeightGPS/EdgeWeightGPS.reds" "$script_out/EdgeWeightGPS.reds"
|
install -m 0644 "$repo_root/contrib/re/redscript/EdgeWeightGPS/EdgeWeightGPS.reds" "$script_out/EdgeWeightGPS.reds"
|
||||||
|
|
||||||
printf 'Installed %s\n' "$script_out/EdgeWeightGPS.reds"
|
printf 'Installed %s\n' "$script_out/EdgeWeightGPS.reds"
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Write EdgeWeightGPS momentum penalty presets as one raw float32 value."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import struct
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
DEFAULT_INSTALL_PATH = Path(
|
||||||
|
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
|
||||||
|
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/momentum_weights.bin"
|
||||||
|
)
|
||||||
|
|
||||||
|
PRESETS: dict[str, float] = {
|
||||||
|
"vanilla": 0.0,
|
||||||
|
"legacy-default": 8.0,
|
||||||
|
"mild": 4.0,
|
||||||
|
"strong": 16.0,
|
||||||
|
"default": 80.0,
|
||||||
|
"silly": 80.0,
|
||||||
|
"overstrong": 160.0,
|
||||||
|
"pathological": 250.0,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def parse_penalty(text: str) -> float:
|
||||||
|
value = float(text)
|
||||||
|
if not 0.0 <= value <= 1000.0:
|
||||||
|
raise argparse.ArgumentTypeError("penalty must be between 0 and 1000")
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def write_weight(path: Path, value: float) -> None:
|
||||||
|
path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
path.write_bytes(struct.pack("<f", value))
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="default")
|
||||||
|
parser.add_argument("--value", type=parse_penalty, help="explicit fixed edge penalty")
|
||||||
|
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
|
||||||
|
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.preset_dir:
|
||||||
|
for name, value in PRESETS.items():
|
||||||
|
path = args.preset_dir / f"{name}.bin"
|
||||||
|
write_weight(path, value)
|
||||||
|
print(f"{path}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
value = args.value if args.value is not None else PRESETS[args.preset]
|
||||||
|
write_weight(args.output, value)
|
||||||
|
print(f"{args.output}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||