Drew T
f6e48b60c5
perf(phase-30 S46-4): parallelise the propagation — 24min -> 11.4min, and +62 MORE instances
...
Drew: "make it more multi-threaded... I still see my cpu idle for far too long."
Measured, fixed, and regression-tested against the S46-3 bank as a KNOWN ANSWER.
- THE MEASUREMENT: 31s saturated (33 makes/48 cc1/load 27) then ~25s with ONE build alive
while 31 cores idled, repeating. Causes: ex.map starts in list order so the giants land
last, and apply/restore is single-threaded.
- gate_all -> gate_failures: return EVERY failure the sweep already computed (~138 rounds -> 1).
- Longest-first gate scheduling; results re-sorted into `changed` order so the verdict stays
bit-identical to the serial loop's.
- PER-OVERLAY INDEPENDENT SEARCH, IN PROCESSES. My first cut used threads and the box refuted
it: 0-4 builds alive at load 3, because the work is regex over 15k-line files and 138
"parallel" searches all queued on the GIL. Same logic in a ProcessPoolExecutor: 14-29 builds,
load 34.75, search phase ~100s. Safe because the shared header is written ONCE by the parent
and each overlay owns its own .c files + build/<bin>/. Seeded with one in-process search
first — a pool submitted at once gives every worker an empty suspect list and makes all 138
pay a full bisection. place_in_overlay extracted to module level so the worker and the
in-process apply cannot drift (R33); compiles_standalone's fixed t.c is per-call now.
- THE REGRESSION (the point, not the stopwatch): revert src/+config to pre-bank, re-run the
identical command -> 29 functions (same), 141 overlays byte-identical, 682s vs ~1440s, and
285 exclusions vs ~350 => +62 MORE member instances (249,161). The old prefix-based
necessity probe was OVER-EXCLUDING (charging 4 fns to 9 overlays that did not all need
them); the per-overlay shrink minimises per overlay. The faster path is also more correct —
a timing comparison would never have shown it. R22 213/213 + tools-health green.
- STILL SERIAL, now the actual wall-clock (neither is a build): ~3min setup before the first
gate (registered_addrs() yaml-parsing a 1949-group/249k-instance registry + 213 sig loads)
and ~2.5min of sequential reconcile_caller_extern after the search.
- Captured as defaults: docs/accelerators.md A8 + memory fleet-tool-parallelism-defaults.
cookbook index regenerated (my §155c append left it stale — the gate caught it, exit 1).
2026-08-07 23:14:15 -06:00
..
2026-08-06 12:36:49 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-07 15:07:55 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 11:12:19 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 16:44:01 -06:00
2026-06-16 16:44:01 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 15:39:52 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-08-06 11:12:19 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 16:44:01 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-08-06 11:12:19 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:02:14 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-07-15 18:33:37 -06:00
2026-07-15 18:33:37 -06:00
2026-06-16 19:41:37 -06:00
2026-06-16 19:41:37 -06:00
2026-07-15 18:33:37 -06:00
2026-07-15 18:33:37 -06:00
2026-06-15 22:50:55 -06:00
2026-06-14 12:05:38 -06:00
2026-08-07 23:14:15 -06:00
2026-08-07 15:07:55 -06:00
2026-08-06 11:12:19 -06:00
2026-08-06 12:36:49 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-07 15:07:55 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 11:12:19 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 13:11:10 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-05 17:40:27 -06:00
2026-08-05 17:40:27 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:41:43 -06:00
2026-08-04 22:10:49 -06:00
2026-08-04 19:37:24 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:50:05 -06:00
2026-08-06 11:12:19 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 22:16:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:07:41 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 19:37:24 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 19:37:24 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 17:50:05 -06:00
2026-08-04 19:37:24 -06:00
2026-08-01 11:15:43 -06:00
2026-08-06 11:12:19 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:53:33 -06:00
2026-08-04 17:52:14 -06:00
2026-08-04 17:53:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 19:40:33 -06:00
2026-08-04 19:40:33 -06:00
2026-08-04 19:40:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 22:16:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:07:41 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 22:10:49 -06:00
2026-08-04 22:16:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:07:41 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:53:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 22:16:33 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:07:41 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 17:41:43 -06:00
2026-08-04 18:30:01 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 22:10:49 -06:00
2026-08-05 18:23:54 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-04 20:09:10 -06:00
2026-08-04 20:09:10 -06:00
2026-08-01 11:15:43 -06:00
2026-08-01 11:15:43 -06:00
2026-08-05 17:40:27 -06:00
2026-08-04 20:09:10 -06:00
2026-06-15 23:00:51 -06:00
2026-07-14 10:12:19 -06:00
2026-06-16 16:44:01 -06:00
2026-08-06 12:36:49 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-06 12:36:49 -06:00
2026-08-07 15:07:55 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-07 14:03:51 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 12:37:24 -06:00
2026-08-06 11:12:19 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-18 22:58:15 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-08-06 11:12:19 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-08-06 11:12:19 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-07-19 00:05:52 -06:00
2026-06-14 03:19:23 -06:00
2026-06-14 03:19:23 -06:00
2026-07-07 22:01:58 -06:00
2026-07-14 10:12:19 -06:00
2026-07-14 10:12:19 -06:00