Diego Rodrigues de Sa e Souza
5d89fa84e7
fix(compression): end-to-end audit — fixes across the whole compression flow ( #4323 )
...
* fix(compression): SLM worker resolves deps+worker file without import.meta.url (B-SLM)
The Next.js standalone bundle (webpack) replaces createRequire(import.meta.url)
with a stub that always throws MODULE_NOT_FOUND, and freezes import.meta.url to the
build-machine path. So depsAvailable() was always false (the worker never spawned)
and resolveWorkerFile() anchored on a path absent at runtime — the SLM silently
fell back to the aggressive summarizer in production. Confirmed by inspecting
dist/.build/next/server/chunks/26410.js (stub module 215743 + frozen file:// path).
Replace both with filesystem probing from runtime anchors (process.cwd(),
process.argv[1]) that survive the bundle. Necessary complement to #4286 (deps
co-location) for the SLM to actually engage in prod; still fail-open without it.
VPS live validation deferred (Rule #18 ); local resolver regression tests added.
* fix(compression): ultra heuristic preserves code blocks / inline code / URLs (B-ULTRA-CODE)
ultra.ts called pruneByScore on raw text with no tombstoning, so the token pruner
dropped low-score code tokens (`b)`, `{`, `+`) inside fenced blocks while leaving the
fence markers intact — output that looked like valid code but was syntactically
destroyed. caveman + llmlingua both extract/restore preserved blocks first; ultra was
the only pruning engine that didn't.
Add pruneProseOnly(): extractPreservedBlocks tombstones fenced code, inline code,
URLs, CONST_CASE, versions; only the prose between placeholders is pruned; preserved
blocks are re-stitched verbatim.
* fix(compression): GCF round-trips values containing the inline-array pattern [..]: (B-GCF-QUOTE)
A value like `ERR[404]: Not Found` / `[Speaker 1]: Hello` nested one level deep was
emitted bare and re-parsed by the decoder as an inline-array header → it threw
`count_mismatch` (or silently decoded wrong), losing the whole block. headroomEngine
.apply() ships such blobs in prod, so this was a reachable lossless violation.
Two complementary fixes, both per SPEC §2.4:
- encode: needsQuote() now quotes strings matching `[`…`]``:` (spec compliance / other
decoders).
- decode: the inline-array branch only fires when the bracket is in the KEY position
(no `=` before it), so a quoted `note="ERR[404]: …"` value falls through to key=value.
* fix(compression): aggressive fidelity — keep text blocks, compress Anthropic tool_result, don't corrupt JSON (B-AGG-*)
Three fidelity fixes in the aggressive path (each TDD, aggressive-fidelity.test.ts):
- B-AGG-TEXTDROP: replaceTextContent dropped 2nd+ text blocks unconditionally; now a
trailing block is dropped only when its text is already subsumed by newText, else kept.
- B-AGG-ANTHROPIC-TR: tool-result compression only fired for OpenAI role:tool messages;
now Anthropic-shape tool_result content blocks (inside user messages) are compressed
too, preserving tool_use_id + block structure.
- B-AGG-JSONTAG: the [COMPRESSED:aging:*] prefix corrupted JSON/code payloads; pure JSON
is now kept verbatim+untagged (stays parseable), fenced blocks get the tag on a
preceding line.
* fix(compression): accessibility collapse preserves [ref] anchors + fires on interleaved trees (B-MCPA11Y-*)
- B-MCPA11Y-ANCHORS: collapseRepeated silently dropped the omitted middle siblings'
[ref=eNN] anchors (the agent could no longer click them); now every omitted ref is
kept alongside the collapse notice. Wires the previously-dead preserveRefPattern.
Invariant: extractRefs(input) ⊆ extractRefs(output).
- B-MCPA11Y-COLLAPSE: noise removal blanked lines (replace→""), and a blank line broke
the sibling run so collapse never fired on realistic interleaved trees; noise lines
are now deleted, and the sibling walk skips stray blanks.
* fix(compression): rtk intensity scales the line budget (B-RTK-INTENSITY)
The intensity knob only set smartTruncate's preserveHead/Tail (16↔24), which rarely
fired because the matched filter capped lines first — so minimal/standard/aggressive
produced byte-identical output on filter-matched tool output. effectiveMaxLines() now
scales the effective line budget (minimal 1.5x, standard 1x, aggressive 0.5x) at both
the per-filter and engine-level truncation sites. Both go through smartTruncate with
priorityPatterns, so error/failure lines survive at every intensity (tested).
* fix(compression): robust language detection + auto-detect honors the detected pack (B-LANG-*)
- B-LANG-DETECTOR: detector was first-match-wins on a single keyword, and some hints are
English-ambiguous ("configuration" in fr, "error" in es) → English text misclassified.
Now score-based (count native-keyword hits, highest wins), and the two English-ambiguous
words are removed from the hint lists, so a lone shared word never misclassifies while
sparse-keyword languages (id) still detect on a single native word.
- B-LANG-DORMANT: with autoDetectLanguage on but enabledPacks ["en"], detected non-English
text fell back to the English pack, whose `articles` rule deletes foreign articles
(pt-BR "a"/"o"). Auto-detect now uses the detected pack directly (it always has rules);
enabledPacks still gates manual selection.
* fix(compression): mode selection enables its engine + align stacked allowlist (B-MODE-ENGINE-DECOUPLE, B-PIPELINE-DIVERGENCE)
- B-MODE-ENGINE-DECOUPLE: picking the standard/rtk MODE now runs caveman/rtk regardless of
the per-engine enabled flag — the mode selection is the enable signal (the per-engine flag
still gates stacked pipeline steps). Previously an operator who picked a mode but left the
engine toggle off got silent 0% compression.
- B-PIPELINE-DIVERGENCE: the global stackedPipeline normalizer stripped
session-dedup/ccr/headroom/llmlingua (engines the combo path accepts via KNOWN_ENGINE_IDS).
The allowlist now matches, so the global setting can use all registered engines.
* docs(compression): correct SLM "stable" claim + document partial packs / stacked telemetry limits
- The llmlingua `stable:true` comment claimed the bundle walk-up + deps-gate were
"confirmed against the live install" — that was wrong (webpack froze import.meta.url and
stubbed createRequire, so the worker never spawned in prod). Corrected to reflect B-SLM.
- COMPRESSION_ENGINES.md: add a Known limitations section (SLM dep co-location requirement,
partial de/fr/ja packs, no-op engines absent from engineBreakdown).
* fix(compression): cast normalized engine id to CompressionPipelineStep['engine'] (typecheck)
2026-06-19 21:51:12 -03:00
..
2026-05-23 01:46:59 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 17:39:08 -03:00
2026-06-12 23:49:22 -03:00
2026-06-19 21:40:57 -03:00
2026-06-19 18:14:58 -03:00
2026-06-11 18:52:29 -03:00
2026-06-19 21:51:12 -03:00
2026-06-14 18:02:51 -03:00
2026-04-28 02:41:19 -03:00
2026-06-19 17:45:46 -03:00
2026-06-17 19:26:32 -03:00
2026-05-21 01:29:12 -03:00
2026-06-09 22:57:12 -03:00
2026-05-19 03:33:58 -03:00
2026-06-11 04:01:24 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 19:26:32 -03:00
2026-06-14 10:45:22 -03:00
2026-06-15 03:32:11 -03:00
2026-05-29 12:44:29 -03:00
2026-06-15 03:32:11 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 14:08:50 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-04-23 14:02:45 +09:00
2026-05-18 09:11:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 17:57:23 -03:00
2026-04-16 05:26:17 -03:00
2026-04-24 13:20:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-19 19:50:30 -03:00
2026-06-16 01:00:40 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 02:10:34 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:13:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-05-29 12:44:29 -03:00
2026-06-12 23:49:22 -03:00
2026-06-12 23:49:22 -03:00
2026-06-14 01:40:35 -03:00
2026-06-11 04:01:24 -03:00
2026-06-11 04:01:24 -03:00
2026-05-10 00:55:06 -03:00
2026-06-13 17:27:40 -03:00
2026-05-21 01:29:12 -03:00
2026-04-16 05:26:17 -03:00
2026-05-22 15:09:07 -03:00
2026-06-19 18:01:14 -03:00
2026-05-23 01:46:59 -03:00
2026-06-11 04:01:24 -03:00
2026-06-04 20:05:38 -03:00
2026-06-11 04:01:24 -03:00
2026-05-14 05:11:24 -03:00
2026-06-19 21:39:28 -03:00
2026-04-30 01:27:03 -03:00
2026-05-26 23:51:47 -03:00
2026-06-11 04:01:24 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 19:13:11 -03:00
2026-06-05 01:14:49 -03:00
2026-04-19 19:50:30 -03:00
2026-06-13 17:27:40 -03:00
2026-05-11 21:14:25 -03:00
2026-06-17 02:43:21 -03:00
2026-05-20 09:12:49 -03:00
2026-05-29 13:20:08 -03:00
2026-05-30 21:18:50 -03:00
2026-05-24 18:05:58 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 02:43:21 -03:00
2026-05-29 13:20:08 -03:00
2026-06-17 02:43:21 -03:00
2026-05-26 23:51:47 -03:00
2026-06-13 17:27:40 -03:00
2026-06-02 07:40:08 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 15:43:55 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 02:43:21 -03:00
2026-06-14 08:45:02 -03:00
2026-05-10 10:26:22 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-11 18:52:29 -03:00
2026-06-05 00:47:35 -03:00
2026-06-11 18:52:29 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-06-14 10:32:26 -03:00
2026-06-06 19:13:11 -03:00
2026-06-17 02:43:21 -03:00
2026-06-02 03:29:10 -03:00
2026-06-03 18:29:26 -03:00
2026-06-07 12:16:33 -03:00
2026-04-30 14:08:50 -03:00
2026-06-10 13:49:08 -03:00
2026-06-11 18:52:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-13 17:27:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 19:08:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-18 09:08:52 -03:00
2026-05-13 16:46:20 -03:00
2026-06-19 06:49:01 -03:00
2026-05-21 01:29:12 -03:00
2026-05-16 12:06:12 -03:00
2026-05-11 01:45:56 +07:00
2026-06-11 04:01:24 -03:00
2026-04-22 01:39:49 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 04:13:28 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-16 00:27:20 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-06-04 20:05:38 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-04-23 01:53:00 -03:00
2026-06-01 14:30:17 -03:00
2026-04-28 02:41:19 -03:00
2026-04-17 17:02:00 -03:00
2026-05-14 13:00:15 -03:00
2026-05-29 12:44:29 -03:00
2026-04-28 02:41:19 -03:00
2026-06-04 20:05:38 -03:00
2026-06-09 15:56:24 -03:00
2026-05-21 01:29:12 -03:00
2026-06-08 23:34:07 -03:00
2026-06-07 07:20:02 -03:00
2026-06-09 15:56:24 -03:00
2026-05-29 13:20:08 -03:00
2026-06-10 13:49:08 -03:00
2026-06-19 06:49:01 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:17:38 -03:00
2026-06-08 01:24:27 -03:00
2026-05-17 11:30:49 -03:00
2026-06-17 19:26:32 -03:00
2026-05-16 21:50:59 -03:00
2026-06-03 06:55:28 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 02:43:21 -03:00
2026-06-19 06:49:01 -03:00
2026-05-16 17:39:47 -03:00
2026-06-01 14:52:50 -03:00
2026-04-21 21:12:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-12 23:49:22 -03:00
2026-05-26 23:51:47 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 19:26:32 -03:00
2026-05-23 01:46:59 -03:00
2026-06-12 23:49:22 -03:00
2026-05-23 01:46:59 -03:00
2026-04-27 03:53:05 +07:00
2026-06-19 06:49:01 -03:00
2026-06-11 04:01:24 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 21:12:37 -03:00
2026-06-19 16:14:18 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 18:50:08 -03:00
2026-05-14 20:17:04 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-05-29 13:21:36 -03:00
2026-06-17 19:26:32 -03:00
2026-06-14 18:06:56 -03:00
2026-06-09 22:57:12 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 17:27:40 -03:00
2026-06-14 18:06:56 -03:00
2026-06-16 01:00:40 -03:00
2026-06-16 01:00:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-09 22:57:12 -03:00
2026-05-13 16:02:44 -03:00
2026-06-13 17:27:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 17:27:40 -03:00
2026-06-19 11:09:14 -03:00
2026-06-16 01:00:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 17:27:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-13 17:27:40 -03:00
2026-06-09 22:57:12 -03:00
2026-06-17 19:26:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-14 18:06:56 -03:00
2026-06-06 04:16:51 -03:00
2026-05-10 18:33:20 -03:00
2026-06-17 19:26:32 -03:00
2026-06-03 18:29:59 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 20:59:38 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 20:46:25 -03:00
2026-04-18 10:49:34 -03:00
2026-06-16 01:00:40 -03:00
2026-05-29 12:44:29 -03:00
2026-06-17 19:26:32 -03:00
2026-06-13 17:27:40 -03:00
2026-04-16 05:26:17 -03:00
2026-05-16 00:25:04 -03:00
2026-06-14 01:09:52 -03:00
2026-06-12 23:49:22 -03:00
2026-04-22 12:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-05-18 08:34:00 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 10:38:13 -03:00
2026-06-10 13:49:08 -03:00
2026-06-05 16:48:13 -03:00
2026-04-16 05:26:17 -03:00
2026-06-13 17:27:40 -03:00
2026-06-17 02:43:21 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 12:51:07 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-15 00:28:36 -03:00
2026-05-15 03:00:52 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 23:41:02 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-19 06:49:01 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:36:51 -03:00
2026-05-15 00:52:15 -03:00
2026-05-10 00:55:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:00:52 -03:00
2026-05-15 04:44:07 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 21:42:57 -03:00
2026-05-15 09:48:30 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:52:13 -03:00
2026-05-14 23:11:30 -03:00
2026-05-15 13:14:14 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-17 17:02:00 -03:00
2026-05-29 12:44:29 -03:00
2026-04-24 15:44:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 04:58:40 -03:00
2026-05-15 02:47:49 -03:00
2026-05-29 12:44:29 -03:00
2026-05-14 23:54:49 -03:00
2026-05-15 05:11:18 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-13 17:27:40 -03:00
2026-05-14 22:09:53 -03:00
2026-05-14 22:38:59 -03:00
2026-05-26 23:51:47 -03:00
2026-05-20 02:05:50 -03:00
2026-06-19 06:49:01 -03:00
2026-05-15 04:51:23 -03:00
2026-05-26 23:51:47 -03:00
2026-06-07 07:20:02 -03:00
2026-06-07 07:20:02 -03:00
2026-05-15 03:46:26 -03:00
2026-06-03 18:12:30 -03:00
2026-05-14 23:11:30 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-14 22:38:59 -03:00
2026-06-12 23:49:22 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 03:00:52 -03:00
2026-06-03 21:08:01 -03:00
2026-06-03 21:08:01 -03:00
2026-05-15 00:36:41 -03:00
2026-05-26 23:51:47 -03:00
2026-05-15 02:47:49 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 14:26:34 -03:00
2026-04-26 14:26:34 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-24 18:05:58 -03:00
2026-05-15 04:36:21 -03:00
2026-06-06 19:13:11 -03:00
2026-05-15 03:13:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-30 21:18:29 -03:00
2026-05-29 12:44:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-05-13 03:47:40 -03:00
2026-05-29 12:44:29 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 12:25:35 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 04:51:38 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-27 00:37:15 -03:00
2026-05-26 23:51:47 -03:00
2026-06-05 12:06:35 -03:00
2026-06-05 12:06:35 -03:00
2026-05-18 09:12:36 -03:00
2026-05-04 19:23:27 -03:00
2026-05-27 09:48:17 -03:00
2026-06-05 12:06:35 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-17 14:04:48 -03:00
2026-06-06 00:26:40 -03:00
2026-06-09 15:56:24 -03:00
2026-06-19 17:57:23 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-13 17:27:40 -03:00
2026-06-03 00:41:10 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-03 18:12:34 -03:00
2026-05-17 13:32:29 -03:00
2026-05-17 14:04:48 -03:00
2026-05-17 16:52:43 -03:00
2026-05-17 16:52:43 -03:00
2026-06-13 17:27:40 -03:00
2026-06-19 17:39:10 -03:00
2026-05-10 00:55:06 -03:00
2026-06-19 21:49:27 -03:00
2026-06-16 01:00:40 -03:00
2026-06-19 20:26:03 -03:00
2026-05-17 22:58:42 -03:00
2026-04-24 09:04:10 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-06-12 23:49:22 -03:00
2026-05-10 00:55:06 -03:00
2026-06-08 00:55:42 -03:00
2026-05-20 02:05:50 -03:00
2026-05-26 23:51:47 -03:00
2026-05-20 02:05:50 -03:00
2026-06-06 19:13:11 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-13 17:27:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-06 00:39:57 -03:00
2026-06-16 08:46:03 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 02:43:21 -03:00
2026-06-09 15:56:24 -03:00
2026-06-13 17:27:40 -03:00
2026-06-10 21:29:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-14 09:42:59 -03:00
2026-05-17 22:58:42 -03:00
2026-06-12 23:49:22 -03:00
2026-06-05 02:50:32 -03:00
2026-05-26 23:51:47 -03:00
2026-06-14 09:04:28 -03:00
2026-05-26 23:51:47 -03:00
2026-06-16 01:00:40 -03:00
2026-06-14 01:10:24 -03:00
2026-06-12 23:49:22 -03:00
2026-06-17 02:43:21 -03:00
2026-05-18 10:56:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-06-10 13:49:08 -03:00
2026-06-17 19:26:32 -03:00
2026-06-01 14:30:17 -03:00
2026-05-12 19:57:35 -03:00
2026-06-08 23:35:08 -03:00
2026-06-06 19:13:11 -03:00
2026-06-11 04:01:24 -03:00
2026-06-13 17:27:40 -03:00
2026-06-13 17:27:40 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 13:21:36 -03:00
2026-05-04 01:34:41 -03:00
2026-04-28 20:46:25 -03:00
2026-04-17 09:00:32 -03:00
2026-06-04 20:05:38 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 19:26:32 -03:00
2026-05-29 12:44:29 -03:00
2026-05-12 15:05:00 -03:00
2026-04-21 21:12:29 -03:00
2026-06-17 02:43:21 -03:00
2026-05-29 12:44:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-19 00:26:17 -03:00
2026-06-12 23:49:22 -03:00
2026-05-26 23:51:47 -03:00
2026-06-05 10:20:38 -03:00
2026-04-25 17:08:44 -03:00
2026-04-25 23:51:18 -03:00
2026-04-25 23:51:18 -03:00
2026-06-19 17:45:46 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-06-13 17:27:40 -03:00
2026-06-03 18:24:41 -03:00
2026-05-10 00:55:06 -03:00
2026-06-03 18:24:41 -03:00
2026-06-03 18:24:41 -03:00
2026-06-03 18:24:41 -03:00
2026-05-10 13:33:55 -03:00
2026-06-03 18:24:41 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-07 07:20:02 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 02:43:21 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-11 18:52:29 -03:00
2026-06-11 18:52:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-05-02 01:48:58 -03:00
2026-04-21 21:12:29 -03:00
2026-06-06 02:15:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-05-01 08:35:52 -03:00
2026-06-01 14:30:17 -03:00
2026-05-21 01:29:12 -03:00
2026-06-11 18:52:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-06-05 09:23:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-11 18:52:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-14 02:02:56 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 00:55:06 -03:00
2026-05-26 23:51:47 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-17 19:54:32 -03:00
2026-05-14 23:41:02 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-09 22:57:12 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-04-16 05:26:17 -03:00
2026-06-11 18:52:29 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 00:55:06 -03:00
2026-06-03 18:29:26 -03:00
2026-06-03 18:29:26 -03:00
2026-06-04 20:05:38 -03:00
2026-06-03 18:29:26 -03:00
2026-06-19 06:49:01 -03:00
2026-06-06 19:13:11 -03:00
2026-05-24 18:05:58 -03:00
2026-06-19 06:49:01 -03:00
2026-04-28 13:59:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-05 02:50:57 -03:00
2026-06-17 19:26:32 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 00:12:33 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-07 07:20:02 -03:00
2026-05-23 01:46:59 -03:00
2026-06-06 21:42:30 -03:00
2026-06-03 22:12:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-07 07:20:02 -03:00
2026-06-11 18:52:29 -03:00
2026-05-13 10:14:25 -03:00
2026-06-06 02:07:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 02:07:06 -03:00
2026-06-19 06:49:01 -03:00
2026-05-23 01:46:59 -03:00
2026-06-13 17:27:40 -03:00
2026-06-09 15:56:24 -03:00
2026-06-11 04:01:24 -03:00
2026-06-06 19:13:11 -03:00
2026-04-21 21:12:29 -03:00
2026-05-06 01:21:31 -03:00
2026-05-27 06:22:15 -03:00
2026-05-27 06:22:15 -03:00
2026-06-10 13:49:08 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-30 21:18:12 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 14:08:50 -03:00
2026-05-30 21:18:12 -03:00
2026-05-30 21:18:12 -03:00
2026-06-01 14:52:50 -03:00
2026-06-11 04:01:24 -03:00
2026-06-17 02:43:21 -03:00
2026-05-14 05:53:26 -03:00
2026-06-13 17:27:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:52:50 -03:00
2026-05-23 01:46:59 -03:00
2026-06-19 17:57:23 -03:00
2026-06-08 18:41:52 -03:00
2026-06-01 14:52:50 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 23:40:22 -03:00
2026-05-29 12:44:29 -03:00
2026-06-19 21:31:42 -03:00
2026-04-24 07:00:21 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-05 11:48:03 -03:00
2026-06-19 21:36:12 -03:00
2026-05-23 01:46:59 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 23:40:22 -03:00
2026-06-19 20:23:05 -03:00
2026-06-17 02:43:21 -03:00
2026-06-12 23:49:22 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-12 23:49:22 -03:00
2026-06-07 07:20:02 -03:00
2026-06-14 18:02:08 -03:00
2026-06-17 02:43:21 -03:00
2026-06-07 07:20:02 -03:00
2026-04-21 21:12:29 -03:00
2026-06-17 19:26:32 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 00:55:06 -03:00
2026-05-24 18:05:58 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 15:29:17 -03:00
2026-05-18 19:18:49 -03:00
2026-06-15 03:32:11 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 06:49:01 -03:00
2026-06-06 02:38:35 -03:00
2026-05-26 23:51:47 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 02:38:35 -03:00
2026-06-17 19:26:32 -03:00
2026-06-06 02:38:35 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 18:50:54 -03:00
2026-06-08 18:43:30 -03:00
2026-06-01 14:30:17 -03:00
2026-05-18 03:01:51 -03:00
2026-06-19 06:49:01 -03:00
2026-06-14 10:32:26 -03:00
2026-06-10 13:49:08 -03:00
2026-06-07 07:20:02 -03:00
2026-06-10 13:49:08 -03:00
2026-06-10 13:49:08 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-29 12:44:29 -03:00
2026-06-04 20:05:38 -03:00
2026-06-19 06:49:01 -03:00
2026-06-11 04:01:24 -03:00
2026-06-19 06:49:01 -03:00
2026-06-03 22:12:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-06 00:20:51 -03:00
2026-06-17 19:26:32 -03:00
2026-06-11 04:01:24 -03:00
2026-06-01 14:52:50 -03:00
2026-06-10 13:49:08 -03:00
2026-05-23 01:46:59 -03:00
2026-05-29 12:44:29 -03:00
2026-06-01 14:31:42 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 21:12:37 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 19:36:48 -03:00
2026-06-05 15:38:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 02:52:44 -03:00
2026-06-05 16:48:13 -03:00
2026-06-03 18:19:49 -03:00
2026-05-23 01:46:59 -03:00
2026-05-04 19:23:27 -03:00
2026-06-10 13:49:08 -03:00
2026-06-19 21:31:30 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-23 01:46:59 -03:00
2026-06-17 02:43:21 -03:00
2026-04-16 05:26:17 -03:00
2026-06-17 19:26:32 -03:00
2026-05-03 17:51:22 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:12:52 -03:00
2026-06-03 12:08:43 -03:00
2026-06-08 00:47:34 -03:00
2026-05-10 00:55:06 -03:00
2026-06-19 06:49:01 -03:00
2026-06-11 18:52:29 -03:00
2026-06-14 10:32:26 -03:00
2026-06-07 07:20:02 -03:00
2026-06-12 23:49:22 -03:00
2026-06-11 18:52:29 -03:00
2026-06-11 04:01:24 -03:00
2026-05-20 02:05:50 -03:00
2026-06-17 02:43:21 -03:00
2026-06-10 13:49:08 -03:00
2026-06-07 12:16:33 -03:00
2026-05-23 01:46:59 -03:00
2026-06-08 10:41:00 -03:00
2026-06-17 02:43:21 -03:00
2026-06-05 02:51:01 -03:00
2026-06-05 02:44:38 -03:00
2026-06-17 02:43:21 -03:00
2026-06-14 01:37:30 -03:00
2026-05-14 00:10:05 -03:00
2026-04-16 05:26:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-26 23:51:47 -03:00
2026-04-23 01:53:00 -03:00
2026-06-19 06:49:01 -03:00
2026-05-10 00:55:06 -03:00
2026-06-13 17:27:40 -03:00
2026-05-14 20:20:54 -03:00
2026-05-14 20:52:08 +08:00
2026-06-11 04:01:24 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-11 04:01:24 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 02:10:34 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-16 01:00:40 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-25 11:16:54 -03:00
2026-04-28 02:16:16 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 16:14:18 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-21 21:12:29 -03:00
2026-06-19 16:14:18 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 06:49:01 -03:00
2026-06-14 21:30:02 -03:00
2026-06-03 00:41:10 -03:00
2026-06-04 20:05:38 -03:00
2026-06-07 07:20:02 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 02:09:20 -03:00
2026-06-17 19:26:32 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-19 18:01:14 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 17:39:08 -03:00
2026-06-19 17:39:08 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 19:26:32 -03:00
2026-06-08 02:05:44 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 19:26:32 -03:00
2026-06-11 04:01:24 -03:00
2026-06-11 18:52:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 21:39:56 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 20:48:03 -03:00
2026-05-23 01:46:59 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 17:27:40 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 03:47:40 -03:00
2026-05-11 21:38:26 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-06-10 13:49:08 -03:00
2026-06-12 23:49:22 -03:00
2026-06-12 23:49:22 -03:00
2026-04-17 11:56:52 -03:00
2026-04-16 05:26:17 -03:00
2026-06-11 18:52:29 -03:00
2026-04-25 11:03:31 -03:00
2026-05-26 23:51:47 -03:00
2026-04-28 02:41:19 -03:00
2026-05-23 01:46:59 -03:00
2026-06-06 19:13:11 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-05-29 12:44:29 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:08:18 -03:00
2026-04-28 02:41:19 -03:00
2026-06-17 02:43:21 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 00:55:06 -03:00
2026-05-02 04:51:38 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-18 23:49:51 +07:00
2026-06-02 13:44:25 -03:00
2026-05-26 23:51:47 -03:00
2026-06-19 16:14:18 -03:00
2026-06-06 21:15:43 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 02:43:21 -03:00
2026-05-06 01:21:31 -03:00
2026-05-20 09:12:49 -03:00
2026-05-30 21:17:56 -03:00
2026-05-30 21:17:56 -03:00
2026-06-07 07:20:02 -03:00
2026-06-06 00:26:40 -03:00
2026-06-05 11:52:27 -03:00
2026-06-05 10:17:40 -03:00
2026-06-13 17:27:40 -03:00
2026-04-30 01:27:03 -03:00
2026-05-26 23:51:47 -03:00
2026-06-15 03:32:11 -03:00
2026-06-17 02:43:21 -03:00
2026-06-05 02:41:42 -03:00
2026-06-12 23:49:22 -03:00
2026-05-31 18:06:17 -03:00
2026-06-09 22:57:12 -03:00
2026-04-16 05:26:17 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-03 06:45:04 -03:00
2026-06-11 18:52:29 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 02:38:35 -03:00
2026-06-19 18:50:08 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 21:49:27 -03:00
2026-05-06 01:21:31 -03:00
2026-06-03 18:29:31 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-19 17:48:54 -03:00
2026-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 02:43:21 -03:00
2026-06-15 03:32:11 -03:00
2026-06-11 18:52:29 -03:00
2026-06-14 10:27:39 -03:00
2026-06-08 18:50:21 -03:00
2026-06-05 02:50:51 -03:00
2026-04-28 10:03:39 -03:00
2026-06-19 12:53:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-19 17:39:10 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 19:54:00 -03:00
2026-06-01 14:30:17 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 23:13:19 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 23:13:19 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-17 19:38:25 -03:00
2026-06-01 14:30:17 -03:00
2026-06-09 15:56:24 -03:00
2026-06-10 13:49:08 -03:00
2026-06-03 07:56:16 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 16:20:11 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-06 04:27:00 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 16:20:11 -03:00
2026-06-10 13:49:08 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-05-29 19:54:00 -03:00
2026-06-01 16:20:11 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 16:20:11 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 15:43:55 -03:00
2026-06-09 15:56:24 -03:00
2026-04-16 05:26:17 -03:00
2026-05-20 02:05:50 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-17 19:26:32 -03:00
2026-06-17 02:43:21 -03:00
2026-04-21 21:12:29 -03:00
2026-06-04 20:05:38 -03:00
2026-04-23 16:57:43 -03:00
2026-06-11 04:01:24 -03:00
2026-06-03 07:52:10 -03:00
2026-05-14 20:19:55 -03:00
2026-06-15 03:32:11 -03:00
2026-06-09 15:56:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-07 12:16:33 -03:00
2026-06-17 19:26:32 -03:00
2026-05-21 01:29:12 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-10 18:33:20 -03:00
2026-06-04 20:05:38 -03:00
2026-06-13 19:30:31 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-06-01 19:47:31 -03:00
2026-06-02 09:53:50 -03:00
2026-06-11 04:01:24 -03:00
2026-06-17 02:43:21 -03:00
2026-06-11 18:52:29 -03:00
2026-06-16 01:00:40 -03:00
2026-04-21 21:12:29 -03:00
2026-06-15 03:32:11 -03:00
2026-06-08 00:49:12 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-16 01:00:40 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 05:14:23 -03:00
2026-06-06 19:13:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-05-18 10:55:33 -03:00
2026-06-17 02:43:21 -03:00
2026-06-07 07:20:02 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-16 01:00:40 -03:00
2026-06-17 02:43:21 -03:00
2026-05-13 03:47:40 -03:00
2026-05-12 19:57:15 -03:00
2026-06-19 21:49:27 -03:00
2026-05-01 16:11:13 -03:00
2026-05-23 01:46:59 -03:00
2026-06-16 01:00:40 -03:00
2026-06-19 21:45:54 -03:00
2026-06-15 03:32:11 -03:00
2026-05-19 09:48:16 -03:00
2026-06-01 14:30:17 -03:00
2026-06-04 20:05:38 -03:00
2026-06-02 02:10:34 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 19:26:32 -03:00
2026-06-06 21:20:26 -03:00
2026-06-06 02:33:17 -03:00
2026-05-17 11:30:49 -03:00
2026-05-24 18:05:58 -03:00
2026-06-17 02:43:21 -03:00
2026-06-02 00:23:51 -03:00
2026-05-19 04:04:26 -03:00
2026-05-01 09:53:51 -03:00
2026-06-07 07:20:02 -03:00
2026-06-13 17:27:40 -03:00
2026-06-02 00:23:51 -03:00
2026-06-19 17:39:57 -03:00
2026-06-13 17:27:40 -03:00
2026-06-12 23:49:22 -03:00
2026-06-05 01:57:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-13 17:27:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-13 17:27:40 -03:00
2026-05-29 12:44:29 -03:00
2026-06-09 22:57:12 -03:00
2026-06-14 10:33:22 -03:00
2026-06-12 23:49:22 -03:00
2026-06-10 13:49:08 -03:00
2026-06-19 20:44:07 -03:00
2026-06-19 12:10:43 -03:00
2026-06-14 02:02:30 -03:00
2026-05-13 03:47:40 -03:00
2026-06-11 04:01:24 -03:00
2026-06-10 13:49:08 -03:00
2026-05-14 10:38:13 -03:00
2026-05-10 00:55:06 -03:00
2026-06-06 03:11:58 -03:00
2026-05-24 18:05:58 -03:00
2026-05-14 10:38:13 -03:00
2026-05-23 01:46:59 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 22:39:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-15 03:32:11 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 20:29:41 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-24 18:05:58 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-02 22:39:13 -03:00
2026-06-02 17:46:48 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-28 02:41:19 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-14 20:19:55 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-02 05:17:20 -03:00
2026-06-02 02:10:34 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 03:41:03 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-13 17:27:40 -03:00
2026-06-02 20:29:41 -03:00
2026-06-04 20:05:38 -03:00
2026-04-28 02:41:19 -03:00
2026-06-17 02:43:21 -03:00
2026-06-19 06:49:01 -03:00
2026-06-09 15:56:24 -03:00
2026-04-30 15:48:50 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-30 21:18:12 -03:00
2026-05-29 13:21:36 -03:00
2026-06-11 18:52:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-05-30 21:18:12 -03:00
2026-06-07 07:20:02 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 02:25:46 -03:00
2026-06-16 01:00:40 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-18 11:44:20 -03:00
2026-05-14 05:11:24 -03:00
2026-06-17 02:43:21 -03:00
2026-06-13 17:27:40 -03:00
2026-06-03 18:35:09 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 18:41:33 -03:00
2026-06-10 16:28:24 -03:00
2026-06-10 13:49:08 -03:00
2026-05-14 20:19:55 -03:00
2026-06-19 06:49:01 -03:00
2026-05-10 18:33:20 -03:00
2026-04-16 05:26:17 -03:00
2026-06-13 17:27:40 -03:00
2026-06-11 04:01:24 -03:00
2026-06-16 01:00:40 -03:00
2026-06-05 14:16:10 -03:00
2026-06-08 23:35:08 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-06-19 20:17:49 -03:00
2026-06-17 19:26:32 -03:00
2026-05-26 23:51:47 -03:00
2026-06-02 06:02:49 -03:00
2026-06-11 18:52:29 -03:00
2026-06-07 07:20:02 -03:00
2026-05-24 18:05:58 -03:00
2026-06-01 14:30:17 -03:00
2026-05-16 10:13:08 -03:00
2026-06-01 19:47:46 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 15:43:55 -03:00
2026-06-01 14:30:17 -03:00
2026-06-06 19:13:11 -03:00
2026-06-13 17:27:40 -03:00
2026-05-29 12:44:29 -03:00
2026-05-13 10:14:25 -03:00
2026-06-01 14:30:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-13 10:14:25 -03:00
2026-06-14 01:10:24 -03:00
2026-04-21 21:12:29 -03:00
2026-06-13 17:27:40 -03:00
2026-05-29 12:44:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-14 05:42:22 -03:00
2026-05-23 01:46:59 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-06-17 02:43:21 -03:00
2026-06-12 23:49:22 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-08 09:07:50 -03:00
2026-05-29 13:21:36 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 01:25:38 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 02:43:21 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-06-11 18:52:29 -03:00
2026-06-17 02:43:21 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:52:50 -03:00
2026-06-13 19:30:31 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 02:43:21 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-06-03 07:19:38 -03:00
2026-04-26 03:03:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-06-01 14:30:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-14 02:07:10 -03:00
2026-06-19 06:49:01 -03:00
2026-06-12 23:49:22 -03:00
2026-06-13 17:27:40 -03:00
2026-04-21 21:12:29 -03:00
2026-06-14 02:02:02 -03:00
2026-06-19 17:57:23 -03:00
2026-06-14 02:05:22 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 05:42:22 -03:00
2026-06-09 15:56:24 -03:00
2026-06-13 17:27:40 -03:00
2026-04-26 03:03:52 -03:00
2026-06-13 17:27:40 -03:00
2026-06-17 19:26:32 -03:00
2026-06-11 18:52:29 -03:00
2026-05-29 13:21:36 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-14 01:39:05 -03:00
2026-06-16 01:00:40 -03:00
2026-06-08 18:41:33 -03:00
2026-06-09 15:56:24 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:30:17 -03:00
2026-06-14 09:04:28 -03:00
2026-06-14 01:10:24 -03:00
2026-06-19 06:49:01 -03:00
2026-04-25 07:46:33 -03:00
2026-05-26 23:51:47 -03:00
2026-06-16 01:00:40 -03:00
2026-05-04 00:11:25 -03:00
2026-06-01 14:30:17 -03:00
2026-06-13 17:27:40 -03:00
2026-04-17 17:02:00 -03:00
2026-06-17 19:26:32 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-06-16 01:00:40 -03:00
2026-06-14 01:38:38 -03:00
2026-06-14 01:38:38 -03:00
2026-05-26 23:51:47 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-06-17 19:26:32 -03:00
2026-06-04 20:05:38 -03:00
2026-06-04 20:05:38 -03:00
2026-06-13 17:27:40 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 06:14:57 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-15 03:32:11 -03:00
2026-04-16 05:26:17 -03:00
2026-06-12 23:49:22 -03:00
2026-04-27 01:09:23 -03:00
2026-06-11 04:01:24 -03:00
2026-06-12 23:49:22 -03:00
2026-04-16 05:26:17 -03:00
2026-06-19 06:49:01 -03:00
2026-06-07 07:20:02 -03:00
2026-04-16 05:26:17 -03:00
2026-06-10 13:49:08 -03:00
2026-06-10 13:49:08 -03:00
2026-04-21 21:12:29 -03:00
2026-04-22 12:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-06-14 10:25:55 -03:00
2026-06-12 23:49:22 -03:00
2026-06-08 02:14:08 -03:00
2026-06-06 19:13:11 -03:00
2026-06-19 06:49:01 -03:00
2026-06-09 15:56:24 -03:00
2026-04-16 05:26:17 -03:00
2026-06-06 02:48:38 -03:00
2026-05-12 19:44:45 -03:00
2026-04-21 04:13:28 -03:00
2026-06-17 19:26:32 -03:00
2026-06-13 17:27:40 -03:00
2026-06-07 07:20:02 -03:00
2026-05-29 13:20:13 -03:00
2026-06-12 23:49:22 -03:00
2026-06-15 03:32:11 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-01 14:30:17 -03:00
2026-06-19 21:31:42 -03:00
2026-06-06 19:13:11 -03:00
2026-06-13 17:27:40 -03:00
2026-06-04 20:05:38 -03:00
2026-05-10 00:55:06 -03:00
2026-06-19 20:12:03 -03:00
2026-06-09 01:51:51 -03:00
2026-06-03 18:29:31 -03:00
2026-04-16 05:26:17 -03:00
2026-05-18 09:18:25 -03:00
2026-06-11 18:52:29 -03:00
2026-06-05 10:14:06 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 17:57:23 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 17:57:23 -03:00
2026-06-19 10:48:59 -03:00
2026-05-31 18:06:17 -03:00
2026-06-19 06:49:01 -03:00
2026-05-29 13:21:36 -03:00
2026-04-21 21:12:29 -03:00
2026-05-13 13:18:27 +00:00
2026-06-14 21:27:25 -03:00
2026-06-03 18:29:31 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-06-19 21:33:28 -03:00
2026-06-19 06:49:01 -03:00
2026-06-03 18:24:41 -03:00
2026-06-14 21:27:25 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 11:41:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-11 04:01:24 -03:00
2026-04-16 05:26:17 -03:00
2026-06-13 17:27:40 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-05-30 21:18:46 -03:00
2026-06-07 07:20:02 -03:00
2026-06-03 18:58:01 -03:00
2026-05-26 23:51:47 -03:00
2026-06-11 04:01:24 -03:00
2026-04-16 05:26:17 -03:00
2026-05-15 20:23:53 +01:00
2026-04-27 20:00:10 -03:00
2026-06-08 18:42:12 -03:00
2026-06-09 15:56:24 -03:00
2026-06-11 04:01:24 -03:00
2026-05-17 21:11:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-17 19:26:32 -03:00
2026-06-01 14:30:17 -03:00
2026-05-10 00:55:06 -03:00
2026-06-19 17:57:23 -03:00
2026-06-08 01:23:37 -03:00
2026-06-01 19:36:48 -03:00
2026-05-24 18:05:58 -03:00
2026-05-16 10:14:06 -03:00
2026-05-26 23:51:47 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-17 02:43:21 -03:00
2026-06-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-18 08:35:34 -03:00
2026-06-19 06:49:01 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-06-12 23:49:22 -03:00
2026-06-08 20:54:20 -03:00
2026-06-16 01:00:40 -03:00
2026-06-16 01:00:40 -03:00
2026-06-12 23:49:22 -03:00
2026-05-10 00:55:06 -03:00
2026-06-08 19:10:40 -03:00
2026-05-23 01:46:59 -03:00
2026-06-17 02:43:21 -03:00
2026-04-22 01:39:49 -03:00
2026-06-19 06:49:01 -03:00
2026-06-17 02:43:21 -03:00
2026-06-19 06:49:01 -03:00
2026-06-06 19:13:11 -03:00
2026-06-12 23:49:22 -03:00
2026-06-01 14:30:17 -03:00
2026-05-24 18:05:58 -03:00
2026-04-21 21:12:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-14 01:37:30 -03:00
2026-06-08 00:48:01 -03:00
2026-06-04 20:05:38 -03:00
2026-06-06 02:44:44 -03:00
2026-06-06 00:22:27 -03:00
2026-06-11 18:52:29 -03:00
2026-06-17 19:26:32 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-06 03:08:16 -03:00
2026-06-06 02:59:09 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-06-19 06:49:01 -03:00
2026-06-03 00:41:11 -03:00
2026-06-19 06:49:01 -03:00
2026-06-16 01:00:40 -03:00
2026-05-20 02:05:50 -03:00
2026-04-24 07:48:19 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 18:42:50 -03:00