Diego Rodrigues de Sa e Souza
0965c54245
feat(discovery): Phase 2 — reporter, /api/discovery/* routes (strict loopback-only) + dashboard UI ( #5939 )
...
* feat(discovery): Phase 2 reporter — discoveryResults DB module + service wiring
Adds src/lib/db/discoveryResults.ts (CRUD over the discovery_results table
from migration 074) and wires the opt-in discovery service to persist and read
findings through it: persistDiscoveryResult / getDiscoveryResults /
getDiscoveryResultById / markVerified / deleteDiscoveryResult, with
(provider, method, endpoint) upsert de-duplication. Re-exported from localDb.
The service stays opt-in / default-off. The /api/discovery/* routes and the
dashboard UI tab are intentionally deferred to Phase 2b — they need the
local-only enforcement model (Hard Rules #15/#17 territory) decided first.
TDD: tests/unit/db/discovery-results.test.ts (8 cases, DB + service delegation),
isolated DATA_DIR with resetDbInstance cleanup.
* feat(discovery): Phase 2b — /api/discovery/* routes (strict loopback-only)
Adds the discovery HTTP surface on top of the reporter DB module:
GET /api/discovery/results list findings (optional ?providerId)
GET /api/discovery/results/:id one finding (404 if absent)
DELETE /api/discovery/results/:id delete a finding
POST /api/discovery/scan scan a provider + persist findings
POST /api/discovery/verify/:id mark a finding verified
Authorization: strict loopback-only. "/api/discovery/" is added to
LOCAL_ONLY_API_PREFIXES so the central authz pipeline (proxy.ts →
runAuthzPipeline → managementPolicy) rejects non-loopback callers with a 403
LOCAL_ONLY before any handler runs. It is deliberately NOT in
LOCAL_ONLY_MANAGE_SCOPE_BYPASS_PREFIXES — no remote manage-scope bypass —
because POST /scan issues outbound probes to provider endpoints (SSRF-adjacent)
and must never be tunnel-reachable. Handlers also call requireManagementAuth
(defense in depth) and return sanitized errors via createErrorResponse.
Tests:
- tests/unit/authz/discovery-routes-local-only.test.ts (8) — security guard:
isLocalOnlyPath true + not manage-scope-bypassable for all four paths.
- tests/unit/api/discovery-routes.test.ts (6) — handler integration over an
isolated DATA_DIR: list/filter, by-id 200/404/400, scan persist + 400 on
empty/malformed body, verify 200/404, delete 200/404, no stack-trace leak.
* feat(discovery): Phase 2c — dashboard UI tab (Tools → Discovery)
Adds the /dashboard/discovery page (DiscoveryPageClient) that consumes the
Phase 2b /api/discovery/* routes: scan a provider, list findings, verify or
delete them. Registered in the sidebar under the Tools group (icon
travel_explore) and given a "discovery" i18n namespace + sidebar keys in
en.json (other locales fall back to en via next-intl until synced — the
locale files are in a pre-existing coverage deficit unrelated to this change).
Registers the UI test path in vitest.config.ts (advisory ui suite).
Tests: src/app/(dashboard)/dashboard/discovery/__tests__/DiscoveryPageClient.test.tsx
(3 cases: loads+renders results, empty state, fetches /api/discovery/results on
mount; stable useTranslations mock to avoid the fetch-loop). NOTE: the ui vitest
suite cannot run in this workspace — @testing-library/dom (a @testing-library/
react peer dep) is absent from node_modules, which fails ALL existing ui tests
equally; the test runs in CI. Component verified locally via typecheck + lint.
* test(discovery): register discovery-routes-local-only in stryker tap.testFiles
The mutation-test-coverage gate (--strict) flags any unit test covering a
mutated module that isn't listed in stryker.conf.json tap.testFiles. This PR's
tests/unit/authz/discovery-routes-local-only.test.ts covers src/server/authz/
routeGuard.ts (a mutated module, which this PR edits by adding the
/api/discovery/ local-only prefix), so it must be registered for its mutant
kills to count. No behavior change.
* refactor(discovery): split DiscoveryPageClient to satisfy max-lines-per-function
The complexity ratchet (max-lines-per-function: 80) flagged the single
184-line DiscoveryPageClient function (+1 over baseline). Extract the data
layer into two hooks (useDiscoveryResults for list/loading/feedback,
useDiscoveryActions for scan/verify/delete), a shared callApi helper, and two
presentational sub-components (DiscoveryScanForm, DiscoveryResultCard). Every
function is now under the 80-line ceiling; complexity gate back to baseline
1995. No behavior change — same exported component, same endpoints, same props.
* test(sidebar): include discovery in omni-proxy item-order snapshot
Adding the Discovery item to the Tools group (this PR's sidebar entry) extends
the ordered omni-proxy section list. Update the exact-match deepEqual snapshot
in sidebar-visibility.test.ts to include "discovery" in its position (after
traffic-inspector). The assertion stays exact — this reflects the intentional
new item, it does not weaken the check.
* docs(changelog): restore release bullets eaten by merge auto-resolve; re-add discovery bullet additively
* chore(quality): bump testFrozen for translator-openai-responses-req.test.ts (1097 -> 1172)
Base-red inherited from #5933 , which grew the test file to 1171 lines
(Hard Rule #18 regression tests) without adjusting the frozen cap. The
release tip itself fails check:file-size; this unblocks every PR into
release/v3.8.44. File untouched by this PR.
* chore(quality): restore stryker tap.testFiles entries eaten by merge auto-resolve
The merge of origin/release/v3.8.44 silently dropped the 3 entries added
on the release side (#5903 , clinepass, #5923 ). Took the release version
verbatim and re-added only this PR's entry (discovery-routes-local-only)
in alphabetical order. check:mutation-test-coverage green locally.
* chore(quality): reconcile inherited v3.8.44 merge-burst drift + include discovery in tools-group order test
- complexity 1995->2003 and cognitive 856->859: both measure IDENTICAL on
the pristine release tip (3a3d618fe ) and this PR's merged HEAD — the PR
is complexity-net-zero; drift is from the 2026-07-02 merge burst
(notes added to both baselines, same family as prior reconciliations).
- sidebar-tools-group.test.ts: append 'discovery' to the expected
TOOLS_GROUP order — the intentional new sidebar item this PR adds
(same expected-value update already made in sidebar-visibility.test.ts).
2026-07-02 22:02:29 -03:00
..
2026-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 22:02:29 -03:00
2026-06-17 19:26:32 -03:00
2026-07-02 22:02:29 -03:00
2026-06-23 17:06:18 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-11 18:52:29 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-14 18:02:51 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 22:02:29 -03:00
2026-06-30 06:54:29 -03:00
2026-06-09 22:57:12 -03:00
2026-07-02 22:01:50 -03:00
2026-05-19 03:33:58 -03:00
2026-06-30 06:54:29 -03:00
2026-06-28 06:58:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54:29 -03:00
2026-05-23 01:46:59 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 10:47:13 -03:00
2026-06-28 06:58:29 -03:00
2026-06-27 09:07:12 -03:00
2026-04-30 14:08:50 -03:00
2026-06-30 06:54:29 -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-06-23 03:08:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-29 16:51:03 -03:00
2026-04-16 05:26:17 -03:00
2026-06-25 13:17:40 -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-07-02 10:47:13 -03:00
2026-04-28 02:41:19 -03:00
2026-06-29 16:51:03 -03:00
2026-06-01 14:52:50 -03:00
2026-06-28 06:58:29 -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-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-29 16:51:03 -03:00
2026-06-01 14:30:17 -03:00
2026-06-08 10:41:00 -03:00
2026-06-23 17:06:18 -03:00
2026-06-08 10:13:24 -03:00
2026-06-30 06:54:29 -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-07-02 17:33:45 -03:00
2026-05-10 00:55:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-26 23:14:27 -03:00
2026-06-28 06:58:29 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-22 15:09:07 -03:00
2026-07-02 18:41:09 -03:00
2026-06-28 06:58:29 -03:00
2026-06-20 07:09:43 -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-25 13:17:40 -03:00
2026-06-28 06:58:29 -03:00
2026-06-28 06:58:29 -03:00
2026-05-14 05:11:24 -03:00
2026-06-28 06:58:29 -03:00
2026-06-26 02:51:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-20 07:09:43 -03:00
2026-06-26 02:51:06 -03:00
2026-06-21 08:56:51 -03:00
2026-06-22 03:17:02 -03:00
2026-06-26 02:51:06 -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-23 17:06:18 -03:00
2026-06-29 16:51:03 -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-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-06-29 16:51:03 -03:00
2026-05-24 18:05:58 -03:00
2026-06-23 03:08:29 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-17 02:43:21 -03:00
2026-07-02 10:47:13 -03:00
2026-06-17 02:43:21 -03:00
2026-06-20 14:55:24 -03:00
2026-07-02 10:47:13 -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-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-17 02:43:21 -03:00
2026-06-29 16:51:03 -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-30 06:54:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-29 08:40:06 -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-07-02 10:47:13 -03:00
2026-06-28 06:58:29 -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-22 03:17:02 -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-07-02 10:47:13 -03:00
2026-05-18 09:08:52 -03:00
2026-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-04-22 01:39:49 -03:00
2026-04-16 05:26:17 -03:00
2026-06-30 06:54:29 -03:00
2026-06-23 03:08:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 20:59:36 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 10:47:13 -03:00
2026-05-29 12:44:29 -03:00
2026-04-21 04:13:28 -03:00
2026-06-29 16:51:03 -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-07-02 10:47:13 -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-06-22 03:17:02 -03:00
2026-04-28 02:41:19 -03:00
2026-07-02 10:47:13 -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-06-27 09:07:12 -03:00
2026-04-28 02:41:19 -03:00
2026-07-02 10:47:13 -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-06-30 06:54:29 -03:00
2026-06-20 07:09:43 -03:00
2026-06-20 07:09:43 -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-07-02 10:47:13 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 10:47:13 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-07-02 10:47:13 -03:00
2026-05-29 13:21:36 -03:00
2026-06-19 06:49:01 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 17:52:18 -03:00
2026-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -03:00
2026-06-30 06:54:29 -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-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-12 23:49:22 -03:00
2026-05-26 23:51:47 -03:00
2026-06-22 03:17:02 -03:00
2026-06-17 19:26:32 -03:00
2026-05-23 01:46:59 -03:00
2026-06-21 08:56:51 -03:00
2026-06-29 08:40:06 -03:00
2026-05-23 01:46:59 -03:00
2026-06-27 09:07:12 -03:00
2026-06-22 03:17:02 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-22 03:17:02 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-22 03:17:02 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-04-27 03:53:05 +07:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-19 06:49:01 -03:00
2026-06-23 17:06:18 -03:00
2026-06-11 04:01:24 -03:00
2026-06-22 03:17:02 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 03:08:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-22 03:17:02 -03:00
2026-07-02 10:47:13 -03:00
2026-06-19 06:49:01 -03:00
2026-06-01 21:12:37 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-23 17:06:18 -03:00
2026-07-02 10:47:13 -03:00
2026-06-23 17:06:18 -03:00
2026-06-30 06:54:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-22 03:17:02 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-20 07:09:43 -03:00
2026-06-21 08:56:51 -03:00
2026-06-29 08:40:06 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 17:06:18 -03:00
2026-05-14 20:17:04 -03:00
2026-06-22 03:17:02 -03:00
2026-06-19 06:49:01 -03:00
2026-06-28 06:58:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-22 03:17:02 -03:00
2026-06-19 06:49:01 -03:00
2026-05-29 13:21:36 -03:00
2026-07-02 18:41:12 -03:00
2026-06-30 06:54:29 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 10:47:13 -03:00
2026-06-14 18:06:56 -03:00
2026-06-09 22:57:12 -03:00
2026-06-27 09:07:12 -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-29 08:40:06 -03:00
2026-06-09 22:57:12 -03:00
2026-05-13 16:02:44 -03:00
2026-06-27 09:07:12 -03:00
2026-06-19 06:49:01 -03:00
2026-06-13 17:27:40 -03:00
2026-06-20 07:09:43 -03:00
2026-06-29 08:40:06 -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-07-02 14:53:58 -03:00
2026-06-13 17:27:40 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -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-06-23 17:06:18 -03:00
2026-06-17 19:26:32 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -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-06-27 09:07:12 -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-29 08:40:06 -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-06-25 13:17:40 -03:00
2026-06-21 08:56:51 -03:00
2026-06-30 06:54: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-25 13:17:40 -03:00
2026-06-25 13:17:40 -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-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -03:00
2026-06-27 09:07:12 -03:00
2026-06-28 06:58:29 -03:00
2026-06-17 02:43:21 -03:00
2026-07-02 10:47:13 -03:00
2026-05-26 23:51:47 -03:00
2026-07-02 20:59:33 -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-06-23 03:08:29 -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-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -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-06-21 08:56:51 -03:00
2026-05-15 00:52:15 -03:00
2026-06-23 03:08:29 -03:00
2026-06-23 03:08:29 -03:00
2026-05-10 00:55:06 -03:00
2026-07-02 10:47:13 -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-06-22 03:17:02 -03:00
2026-05-15 03:52:13 -03:00
2026-06-21 08:56:51 -03:00
2026-05-14 23:11:30 -03:00
2026-05-15 13:14:14 -03:00
2026-06-28 06:58:29 -03:00
2026-06-23 03:08: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-06-29 08:40:06 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-22 03:17:02 -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-20 14:55:24 -03:00
2026-06-21 08:56:51 -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-06-29 08:40:06 -03:00
2026-05-15 03:46:26 -03:00
2026-06-28 06:58:29 -03:00
2026-06-03 18:12:30 -03:00
2026-07-02 10:47:13 -03:00
2026-05-14 23:11:30 -03:00
2026-07-02 10:47:13 -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-29 16:51:03 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 08:40:06 -03:00
2026-05-26 23:51:47 -03:00
2026-06-25 13:17:40 -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-06-21 08:56:51 -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-27 09:07:12 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 17:36:16 -03:00
2026-07-02 17:36:16 -03:00
2026-06-29 08:40:06 -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-30 06:54:29 -03:00
2026-06-20 07:09:43 -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-06-27 09:07:12 -03:00
2026-06-27 09:07:12 -03:00
2026-05-26 23:51:47 -03:00
2026-04-27 00:37:15 -03:00
2026-06-20 14:55:24 -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-06-25 13:17:40 -03:00
2026-05-18 09:12:36 -03:00
2026-07-02 20:04:10 -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-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-06-20 07:09:43 -03:00
2026-06-27 09:07:12 -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-07-02 17:34:11 -03:00
2026-06-19 06:49:01 -03:00
2026-06-22 03:17:02 -03:00
2026-06-22 03:17:02 -03:00
2026-07-02 17:49:06 -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-06-30 06:54:29 -03:00
2026-06-26 02:51:06 -03:00
2026-06-13 17:27:40 -03:00
2026-06-20 07:09:43 -03:00
2026-05-10 00:55:06 -03:00
2026-06-27 09:07:12 -03:00
2026-06-16 01:00:40 -03:00
2026-06-26 02:51:06 -03:00
2026-06-29 08:40:06 -03:00
2026-05-17 22:58:42 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54:29 -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-27 09:07:12 -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-06-25 13:17:40 -03:00
2026-05-20 02:05:50 -03:00
2026-06-29 16:51:03 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-26 02:51:06 -03:00
2026-05-26 23:51:47 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -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-26 02:51:06 -03:00
2026-06-13 17:27:40 -03:00
2026-06-21 08:56:51 -03:00
2026-06-06 00:39:57 -03:00
2026-06-16 08:46:03 -03:00
2026-06-22 03:17:02 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-07-02 17:34:06 -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-22 03:17:02 -03:00
2026-06-10 21:29:11 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-14 09:42:59 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 03:08:29 -03:00
2026-06-29 08:40:06 -03:00
2026-06-05 02:50:32 -03:00
2026-05-26 23:51:47 -03:00
2026-06-22 03:17:02 -03:00
2026-06-25 13:17:40 -03:00
2026-06-14 09:04:28 -03:00
2026-06-29 08:40:06 -03:00
2026-06-22 03:17:02 -03:00
2026-06-20 14:55: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-06-25 13:17:40 -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-23 03:08:29 -03:00
2026-06-01 14:30:17 -03:00
2026-05-12 19:57:35 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-06-28 06:58:29 -03:00
2026-07-02 10:47:13 -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-06-27 09:07:12 -03:00
2026-04-16 05:26:17 -03:00
2026-06-20 07:09:43 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-05-29 13:21:36 -03:00
2026-05-04 01:34:41 -03:00
2026-06-29 16:51:03 -03:00
2026-04-17 09:00:32 -03:00
2026-06-20 14:55:24 -03:00
2026-06-04 20:05:38 -03:00
2026-06-30 06:54:29 -03:00
2026-06-17 19:26:32 -03:00
2026-07-02 10:47:13 -03:00
2026-05-29 12:44:29 -03:00
2026-06-29 08:40:06 -03:00
2026-04-21 21:12:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-17 02:43:21 -03:00
2026-06-25 13:17:40 -03:00
2026-06-30 06:54:29 -03:00
2026-05-29 12:44:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 08:40:06 -03:00
2026-06-25 13:17:40 -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-30 06:54:29 -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-20 07:09:43 -03:00
2026-06-28 06:58:29 -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-26 02:51:06 -03:00
2026-07-02 18:41:06 -03:00
2026-06-03 18:24:41 -03:00
2026-07-02 10:47:13 -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-25 13:17:40 -03:00
2026-06-07 07:20:02 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-26 02:51:06 -03:00
2026-06-27 09:07:12 -03:00
2026-06-23 17:06:18 -03:00
2026-06-26 02:51:06 -03:00
2026-06-25 13:17: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-07-02 10:47:13 -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-25 13:17:40 -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-29 16:51:03 -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-06-27 09:07:12 -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-06-27 09:07:12 -03:00
2026-06-29 16:51:03 -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-30 06:54:29 -03:00
2026-06-23 17:06:18 -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-07-02 10:47:13 -03:00
2026-06-20 14:55:24 -03:00
2026-07-02 10:47:13 -03:00
2026-04-30 01:27:03 -03:00
2026-06-01 14:30:17 -03:00
2026-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-27 09:07:12 -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-07-02 10:47:13 -03:00
2026-05-10 00:55:06 -03:00
2026-07-02 10:47:13 -03:00
2026-05-26 23:51:47 -03:00
2026-06-13 17:27:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -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-06-25 13:17:40 -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-07-02 10:47:13 -03:00
2026-06-01 14:52:50 -03:00
2026-06-01 14:52:50 -03:00
2026-06-23 17:06:18 -03:00
2026-04-16 05:26:17 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -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-07-02 20:12:23 -03:00
2026-06-03 18:29:26 -03:00
2026-06-03 18:29:26 -03:00
2026-06-23 17:06:18 -03:00
2026-06-04 20:05:38 -03:00
2026-06-23 03:08:29 -03:00
2026-06-28 06:58:29 -03:00
2026-06-23 03:08:29 -03:00
2026-06-03 18:29:26 -03:00
2026-07-02 21:57:52 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-30 06:54:29 -03:00
2026-06-06 19:13:11 -03:00
2026-05-24 18:05:58 -03:00
2026-06-28 06:58:29 -03:00
2026-06-26 02:51:06 -03:00
2026-06-27 09:07:12 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-30 06:54:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-05 02:50:57 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -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-26 02:51:06 -03:00
2026-06-20 07:09:43 -03:00
2026-06-07 07:20:02 -03:00
2026-06-27 09:07:12 -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-27 09:07:12 -03:00
2026-06-29 16:51:03 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-06-26 02:51:06 -03:00
2026-06-06 02:07:06 -03:00
2026-06-19 06:49:01 -03:00
2026-06-21 08:56:51 -03:00
2026-05-23 01:46:59 -03:00
2026-06-20 14:55:24 -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-06-29 16:51:03 -03:00
2026-07-02 17:42:31 -03:00
2026-05-27 06:22:15 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-06-30 06:54:29 -03:00
2026-05-30 21:18:12 -03:00
2026-07-02 10:47:13 -03:00
2026-05-26 23:51:47 -03:00
2026-04-30 14:08:50 -03:00
2026-06-29 16:51:03 -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-29 08:40:06 -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-29 08:40:06 -03:00
2026-06-08 18:41:52 -03:00
2026-06-01 14:52:50 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -03:00
2026-06-01 14:52:50 -03:00
2026-06-02 23:40:22 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-04-24 07:00:21 -03:00
2026-07-02 10:47:13 -03:00
2026-06-01 14:52:50 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-05 11:48:03 -03:00
2026-06-20 07:09:43 -03:00
2026-05-23 01:46:59 -03:00
2026-05-29 12:44:29 -03:00
2026-06-02 23:40:22 -03:00
2026-06-20 07:09:43 -03:00
2026-06-17 02:43:21 -03:00
2026-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -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-30 06:54:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-14 18:02:08 -03:00
2026-07-02 10:47:13 -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-06-23 03:08:29 -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-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -03:00
2026-06-30 06:54:29 -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-07-02 10:47:13 -03:00
2026-05-29 12:44:29 -03:00
2026-05-26 23:51:47 -03:00
2026-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -03:00
2026-06-17 19:26:32 -03:00
2026-06-06 02:38:35 -03:00
2026-06-20 07:09:43 -03:00
2026-06-13 18:50:54 -03:00
2026-06-25 13:17:40 -03:00
2026-06-08 18:43:30 -03:00
2026-07-02 17:29:16 -03:00
2026-06-28 06:58:29 -03:00
2026-06-27 09:07:12 -03:00
2026-06-20 14:55:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-29 08:40:06 -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-07-02 14:27:31 -03:00
2026-05-29 12:44:29 -03:00
2026-06-21 08:56:51 -03:00
2026-06-26 02:51:06 -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-29 08:40:06 -03:00
2026-06-03 22:12:17 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 20:04:05 -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-06-29 08:40:06 -03:00
2026-05-29 12:44:29 -03:00
2026-06-30 06:54:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:31:42 -03:00
2026-04-16 05:26:17 -03:00
2026-06-28 06:58:29 -03:00
2026-06-20 14:55:24 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-22 03:17:02 -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-25 13:17:40 -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-06-25 13:17:40 -03:00
2026-05-04 19:23:27 -03:00
2026-07-02 10:47:13 -03:00
2026-06-20 07:09:43 -03:00
2026-06-21 08:56:51 -03:00
2026-06-20 07:09:43 -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-07-02 10:47:13 -03:00
2026-05-23 01:46:59 -03:00
2026-07-02 10:47:13 -03:00
2026-04-16 05:26:17 -03:00
2026-06-26 02:51:06 -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-28 06:58:29 -03:00
2026-06-08 00:47:34 -03:00
2026-06-29 16:51:03 -03:00
2026-05-10 00:55:06 -03:00
2026-06-29 08:40:06 -03:00
2026-06-21 08:56:51 -03:00
2026-06-19 06:49:01 -03:00
2026-06-27 09:07:12 -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-07-02 17:52:18 -03:00
2026-06-29 08:40:06 -03:00
2026-06-22 03:17:02 -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-21 08:56:51 -03:00
2026-06-25 13:17:40 -03:00
2026-06-17 02:43:21 -03:00
2026-06-26 02:51:06 -03:00
2026-06-26 02:51:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-10 13:49:08 -03:00
2026-06-07 12:16:33 -03:00
2026-06-27 09:07:12 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 14:27:31 -03:00
2026-06-08 10:41:00 -03:00
2026-06-17 02:43:21 -03:00
2026-07-02 10:47:13 -03:00
2026-06-23 03:08:29 -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-25 13:17:40 -03:00
2026-06-14 01:37:30 -03:00
2026-06-20 07:09:43 -03:00
2026-05-14 00:10:05 -03:00
2026-06-30 06:54:29 -03:00
2026-06-27 09:07:12 -03:00
2026-06-19 06:49:01 -03:00
2026-06-20 07:09:43 -03:00
2026-04-23 01:53:00 -03:00
2026-06-30 06:54:29 -03:00
2026-05-10 00:55:06 -03:00
2026-06-29 16:51:03 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-05-26 23:51:47 -03:00
2026-06-22 03:17:02 -03:00
2026-07-02 10:47:13 -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-29 16:51:03 -03:00
2026-06-11 04:01:24 -03:00
2026-06-13 17:27:40 -03:00
2026-07-02 17:32:47 -03:00
2026-06-21 08:56:51 -03:00
2026-06-22 03:17: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-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-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-07-02 10:47:13 -03:00
2026-04-25 11:16:54 -03:00
2026-07-02 10:47: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-01 14:30:17 -03:00
2026-04-30 01:27:03 -03:00
2026-06-30 06:54:29 -03:00
2026-06-20 07:09:43 -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-22 03:17:02 -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-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-30 06:54:29 -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-07-02 17:42:31 -03:00
2026-06-23 03:08:29 -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-20 07:09:43 -03:00
2026-06-29 08:40:06 -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-07-02 10:47:13 -03:00
2026-06-20 07:09:43 -03:00
2026-06-20 07:09:43 -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-20 07:09:43 -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-22 03:17:02 -03:00
2026-06-22 03:17:02 -03:00
2026-06-20 14:55:24 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-20 11:23:07 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -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-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-19 06:49:01 -03:00
2026-06-19 06:49:01 -03:00
2026-06-23 03:08:29 -03:00
2026-06-22 03:17:02 -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-07-02 10:47:13 -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-06-29 16:51:03 -03:00
2026-06-10 13:49:08 -03:00
2026-06-12 23:49:22 -03:00
2026-06-30 06:54:29 -03:00
2026-06-12 23:49:22 -03:00
2026-06-22 03:17:02 -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-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -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-07-02 10:47:13 -03:00
2026-06-19 06:49:01 -03:00
2026-06-28 06:58:29 -03:00
2026-06-22 03:17:02 -03:00
2026-06-21 08:56:51 -03:00
2026-06-19 06:49:01 -03:00
2026-05-29 12:44:29 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 17:42:31 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54:29 -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-06-25 13:17:40 -03:00
2026-05-13 10:14:25 -03:00
2026-05-18 23:49:51 +07:00
2026-06-26 02:51:06 -03:00
2026-05-26 23:51:47 -03:00
2026-06-20 07:09:43 -03:00
2026-06-06 21:15:43 -03:00
2026-06-23 03:08:29 -03:00
2026-06-29 08:40:06 -03:00
2026-06-17 02:43:21 -03:00
2026-06-23 03:08:29 -03:00
2026-06-29 16:51:03 -03:00
2026-06-29 08:40:06 -03:00
2026-06-21 08:56:51 -03:00
2026-05-20 09:12:49 -03:00
2026-06-30 06:54:29 -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-06-22 03:17:02 -03:00
2026-06-20 14:55:24 -03:00
2026-06-29 16:51:03 -03:00
2026-06-28 06:58:29 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -03:00
2026-04-30 01:27:03 -03:00
2026-06-30 06:54:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-28 06:58:29 -03:00
2026-06-28 06:58:29 -03:00
2026-06-29 08:40:06 -03:00
2026-06-17 02:43:21 -03:00
2026-06-29 08:40:06 -03:00
2026-06-12 23:49:22 -03:00
2026-06-29 16:51:03 -03:00
2026-06-29 16:51:03 -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-07-02 17:42:31 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-06-23 17:06:18 -03:00
2026-06-30 06:54:29 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 14:50:08 -03:00
2026-06-19 06:49:01 -03:00
2026-06-20 07:09:43 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 17:34:17 -03:00
2026-05-06 01:21:31 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 14:15:39 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 18:41:02 -03:00
2026-06-03 18:29:31 -03:00
2026-06-23 17:06:18 -03:00
2026-06-23 17:06:18 -03:00
2026-06-20 07:09:43 -03:00
2026-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-06-23 17:06:18 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 03:08:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 03:08:29 -03:00
2026-06-11 18:52:29 -03:00
2026-06-29 16:51:03 -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-20 07:09:43 -03:00
2026-06-29 08:40:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 23:51:47 -03:00
2026-06-30 06:54:29 -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-06-25 13:17:40 -03:00
2026-05-23 01:46:59 -03:00
2026-07-02 21:53:19 -03:00
2026-07-02 15:04:30 -03:00
2026-06-17 02:43:21 -03:00
2026-06-28 06:58:29 -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-06-26 02:51:06 -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-30 06:54:29 -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-06-25 13:17:40 -03:00
2026-05-20 02:05:50 -03:00
2026-06-22 03:17:02 -03:00
2026-06-21 08:56:51 -03:00
2026-06-29 16:51:03 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-06-29 08:40:06 -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-30 06:54:29 -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-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -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-07-02 10:47:13 -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-30 06:54:29 -03:00
2026-06-30 06:54:29 -03:00
2026-06-17 19:26:32 -03:00
2026-05-21 01:29:12 -03:00
2026-06-29 08:40:06 -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-26 02:51:06 -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-22 03:17:02 -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-29 16:51:03 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-11 18:52:29 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -03:00
2026-04-21 21:12:29 -03:00
2026-07-02 15:30:49 -03:00
2026-06-20 14:55:24 -03:00
2026-06-29 16:51:03 -03:00
2026-06-23 17:06:18 -03:00
2026-06-22 03:17:02 -03:00
2026-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -03:00
2026-07-02 17:54:50 -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-26 02:51:06 -03:00
2026-06-22 03:17:02 -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-29 16:51:03 -03:00
2026-06-07 07:20:02 -03:00
2026-06-19 06:49:01 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 08:40:06 -03:00
2026-06-17 02:43:21 -03:00
2026-05-13 03:47:40 -03:00
2026-07-02 17:33:27 -03:00
2026-05-12 19:57:15 -03:00
2026-06-20 07:09:43 -03:00
2026-05-01 16:11:13 -03:00
2026-05-23 01:46:59 -03:00
2026-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -03:00
2026-06-21 08:56:51 -03:00
2026-06-29 08:40:06 -03:00
2026-06-20 14:55:24 -03:00
2026-06-27 09:07:12 -03:00
2026-06-15 03:32:11 -03:00
2026-06-29 08:40:06 -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-07-02 10:47:13 -03:00
2026-07-02 17:33:08 -03:00
2026-06-21 08:56:51 -03:00
2026-06-21 08:56:51 -03:00
2026-06-17 19:26:32 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -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-07-02 17:36:16 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 20:46:51 -03:00
2026-06-02 00:23:51 -03:00
2026-05-19 04:04:26 -03:00
2026-07-02 10:47:13 -03:00
2026-06-07 07:20:02 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 08:40:06 -03:00
2026-06-28 06:58:29 -03:00
2026-06-13 17:27:40 -03:00
2026-06-12 23:49:22 -03:00
2026-06-29 08:40:06 -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-29 16:51:03 -03:00
2026-06-09 22:57:12 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -03:00
2026-06-30 06:54:29 -03:00
2026-06-14 10:33:22 -03:00
2026-07-02 10:47:13 -03:00
2026-06-12 23:49:22 -03:00
2026-06-10 13:49:08 -03:00
2026-06-20 07:09:43 -03:00
2026-07-02 10:47:13 -03:00
2026-06-14 02:02:30 -03:00
2026-07-02 10:47:13 -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-06-30 06:54:29 -03:00
2026-05-10 00:55:06 -03:00
2026-07-02 20:46:51 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 20:46:51 -03:00
2026-07-02 20:46:51 -03:00
2026-05-14 10:38:13 -03:00
2026-05-23 01:46:59 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 20:46:51 -03:00
2026-06-13 17:27:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-27 09:07:12 -03:00
2026-07-02 17:34:06 -03:00
2026-06-22 03:17:02 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -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-25 13:17:40 -03:00
2026-06-02 20:29:41 -03:00
2026-06-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17: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: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-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -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-25 13:17:40 -03:00
2026-06-01 14:30:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-30 06:54:29 -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-25 13:17:40 -03:00
2026-06-06 03:41:03 -03:00
2026-06-01 14:52:50 -03:00
2026-06-29 16:51:03 -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-20 14:55:24 -03:00
2026-07-02 10:47:13 -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-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-25 13:17:40 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-07-02 10:47:13 -03:00
2026-05-30 21:18:12 -03:00
2026-06-21 08:56:51 -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-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-01 14:30:17 -03:00
2026-06-29 08:40:06 -03:00
2026-05-30 21:18:12 -03:00
2026-06-07 07:20:02 -03:00
2026-06-27 09:07:12 -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-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-27 09:07:12 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-04-16 05:26:17 -03:00
2026-07-02 10:47:13 -03:00
2026-05-14 05:11:24 -03:00
2026-07-02 10:47:13 -03:00
2026-06-13 17:27:40 -03:00
2026-06-21 08:56:51 -03:00
2026-06-19 06:49:01 -03:00
2026-06-29 16:51:03 -03:00
2026-06-08 18:41:33 -03:00
2026-06-23 03:08:29 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-10 13:49:08 -03:00
2026-06-27 09:07:12 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-05-10 18:33:20 -03:00
2026-06-23 03:08:29 -03:00
2026-06-27 09:07:12 -03:00
2026-06-26 02:51:06 -03:00
2026-04-16 05:26:17 -03:00
2026-06-13 17:27:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 16:38:38 -03:00
2026-07-02 10:47:13 -03:00
2026-06-16 01:00:40 -03:00
2026-06-05 14:16:10 -03:00
2026-06-27 09:07:12 -03:00
2026-06-21 08:56:51 -03:00
2026-06-04 20:05:38 -03:00
2026-06-26 02:51:06 -03:00
2026-06-20 07:09:43 -03:00
2026-06-25 13:17:40 -03:00
2026-06-26 02:51:06 -03:00
2026-06-04 20:05:38 -03:00
2026-06-20 07:09:43 -03:00
2026-06-26 02:51:06 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-06-02 06:02:49 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -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-07-02 10:47:13 -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-25 13:17:40 -03:00
2026-06-01 15:43:55 -03:00
2026-06-29 16:51:03 -03:00
2026-06-06 19:13:11 -03:00
2026-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -03:00
2026-05-29 12:44:29 -03:00
2026-06-28 06:58:29 -03:00
2026-05-13 10:14:25 -03:00
2026-07-02 10:47:13 -03:00
2026-06-26 02:51:06 -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-07-02 10:47:13 -03:00
2026-04-21 21:12:29 -03:00
2026-06-13 17:27:40 -03:00
2026-06-29 08:40:06 -03:00
2026-05-29 12:44:29 -03:00
2026-04-16 05:26:17 -03:00
2026-06-20 07:09:43 -03:00
2026-05-14 05:42:22 -03:00
2026-05-23 01:46:59 -03:00
2026-06-30 06:54:29 -03:00
2026-06-19 06:49:01 -03:00
2026-06-29 16:51:03 -03:00
2026-06-21 08:56:51 -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-27 09:07:12 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 16:51:03 -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-29 08:40:06 -03:00
2026-06-28 06:58:29 -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-23 03:08:29 -03:00
2026-06-27 09:07:12 -03:00
2026-05-23 01:46:59 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54: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-27 09:07:12 -03:00
2026-06-01 14:30:17 -03:00
2026-07-02 10:47:13 -03:00
2026-04-16 05:26:17 -03:00
2026-07-02 22:02:29 -03:00
2026-07-02 22:02:29 -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-06-26 02:51:06 -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-06-30 06:54:29 -03:00
2026-06-30 06:54: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-06-27 09:07:12 -03:00
2026-04-21 21:12:29 -03:00
2026-06-14 02:02:02 -03:00
2026-06-27 09:07:12 -03:00
2026-06-27 09:07:12 -03:00
2026-06-20 07:09:43 -03:00
2026-06-25 13:17:40 -03:00
2026-05-26 23:51:47 -03:00
2026-05-14 05:42:22 -03:00
2026-06-29 08:40:06 -03:00
2026-06-09 15:56:24 -03:00
2026-07-02 10:47:13 -03:00
2026-06-30 06:54:29 -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-06-29 16:51:03 -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-27 09:07:12 -03:00
2026-06-30 06:54:29 -03:00
2026-06-08 18:41:33 -03:00
2026-06-27 09:07:12 -03:00
2026-06-09 15:56:24 -03:00
2026-06-28 06:58:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-23 03:08:29 -03:00
2026-07-02 10:47:13 -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-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -03:00
2026-07-02 10:47:13 -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-26 02:51:06 -03:00
2026-06-27 09:07:12 -03:00
2026-06-17 19:26:32 -03:00
2026-06-22 03:17:02 -03:00
2026-04-21 21:12:29 -03:00
2026-06-25 13:17:40 -03:00
2026-05-26 23:51:47 -03:00
2026-07-02 10:47:13 -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-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-04 20:05:38 -03:00
2026-07-02 10:47:13 -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-26 02:51:06 -03:00
2026-04-16 05:26:17 -03:00
2026-06-29 08:40:06 -03:00
2026-04-16 05:26:17 -03:00
2026-06-29 08:40:06 -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-29 16:51:03 -03:00
2026-06-12 23:49:22 -03:00
2026-06-27 09:07:12 -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-06-20 14:55:24 -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-06-29 16:51:03 -03:00
2026-04-16 05:26:17 -03:00
2026-07-02 10:47:13 -03:00
2026-07-02 10:47:13 -03:00
2026-06-06 02:48:38 -03:00
2026-06-29 16:51:03 -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-29 16:51:03 -03:00
2026-07-02 10:47:13 -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-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-05-29 12:44:29 -03:00
2026-06-29 08:40:06 -03:00
2026-06-30 06:54:29 -03:00
2026-06-01 14:30:17 -03:00
2026-06-26 02:51:06 -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-07-02 10:47:13 -03:00
2026-06-20 07:09:43 -03:00
2026-06-09 01:51:51 -03:00
2026-06-03 18:29:31 -03:00
2026-06-26 02:51:06 -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-20 07:09:43 -03:00
2026-06-19 06:49:01 -03:00
2026-06-20 07:09:43 -03:00
2026-06-20 07:09:43 -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-06-20 14:55:24 -03:00
2026-07-02 17:30:29 -03:00
2026-05-13 13:18:27 +00:00
2026-06-23 03:08:29 -03:00
2026-06-25 13:17:40 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47: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-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-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-04-16 05:26:17 -03:00
2026-06-25 13:17:40 -03:00
2026-06-26 02:51:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-20 14:55:24 -03:00
2026-06-26 02:51:06 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 17:49:06 -03:00
2026-07-02 17:34:17 -03:00
2026-06-03 18:24:41 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 08:40:06 -03:00
2026-05-14 11:41:27 -03:00
2026-04-16 05:26:17 -03:00
2026-06-25 13:17:40 -03:00
2026-04-16 05:26:17 -03:00
2026-06-11 04:01:24 -03:00
2026-06-29 08:40:06 -03:00
2026-06-29 08:40:06 -03:00
2026-04-16 05:26:17 -03:00
2026-07-02 10:47:13 -03:00
2026-06-20 14:55:24 -03:00
2026-04-23 16:57:43 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-21 08:56:51 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 08:40:06 -03:00
2026-06-07 07:20:02 -03:00
2026-07-02 10:47:13 -03:00
2026-06-03 18:58:01 -03:00
2026-06-30 06:54:29 -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-06-23 03:08:29 -03: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-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-11 04:01:24 -03:00
2026-06-26 02:51:06 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-25 13:17:40 -03:00
2026-06-23 03:08:29 -03:00
2026-06-29 08:40:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-05-10 00:55:06 -03:00
2026-07-02 20:46:51 -03:00
2026-06-08 01:23:37 -03:00
2026-06-29 08:40:06 -03:00
2026-07-02 10:47:13 -03:00
2026-05-24 18:05:58 -03:00
2026-05-16 10:14:06 -03:00
2026-06-25 13:17:40 -03:00
2026-06-27 09:07:12 -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-07-02 14:27:31 -03:00
2026-06-28 06:58:29 -03:00
2026-06-25 13:17:40 -03:00
2026-07-02 10:47:13 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-25 13:17:40 -03:00
2026-06-29 16:51:03 -03:00
2026-06-25 13:17:40 -03:00
2026-05-18 08:35:34 -03:00
2026-06-25 13:17:40 -03:00
2026-06-19 06:49:01 -03:00
2026-06-30 06:54:29 -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-06-27 09:07:12 -03:00
2026-06-27 09:07:12 -03:00
2026-05-10 00:55:06 -03:00
2026-06-23 03:08:29 -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-30 06:54:29 -03:00
2026-07-02 10:47:13 -03:00
2026-06-29 16:51:03 -03:00
2026-06-30 06:54:29 -03:00
2026-06-29 16:51:03 -03:00
2026-07-02 13:49:21 -03:00
2026-05-24 18:05:58 -03:00
2026-04-21 21:12:29 -03:00
2026-06-21 08:56:51 -03:00
2026-06-22 03:17:02 -03:00
2026-07-02 10:47:13 -03:00
2026-06-27 09:07:12 -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-06-30 06:54:29 -03:00
2026-05-26 23:51:47 -03:00
2026-05-26 23:51:47 -03:00
2026-06-29 16:51:03 -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-06-22 03:17:02 -03:00
2026-04-16 05:26:17 -03:00
2026-05-29 12:44:29 -03:00
2026-06-28 06:58: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-27 09:07:12 -03:00
2026-06-19 06:49:01 -03:00
2026-06-08 18:42:50 -03:00