Xiangzhe
6fb444ef64
fix(build): align pack-boot sql.js expectations with dependency-based packaging ( #11242 )
...
check:pack-artifact and check:pack-boot have been self-contradictory since
05/08, blocking the v3.8.50 publish in ci.yml (build:cli job) and
npm-publish.yml:
- check:pack-artifact FAILS any tarball path containing a node_modules
segment (PACK_ARTIFACT_NEVER_ALLOWED_SEGMENTS; files[] also excludes
"!**/node_modules/**").
- check:pack-boot REQUIRED sql.js under the vendored
dist/node_modules/sql.js location — a path the tarball can never carry,
so both gates could never be green at once.
The packaging model is now dependency-based: sql.js and node-machine-id
are declared `dependencies` (a clean install places them under
<packageRoot>/node_modules/), and better-sqlite3 is an optionalDependency
installed natively per platform (^13.0.2 — which also covers the
darwin-arm64 prebuild gap from #11242 by construction). The runtime
already resolves the WASM at <cwd>/node_modules/sql.js/dist/sql-wasm.wasm
(src/lib/db/adapters/sqljsAdapter.ts).
Changes:
- scripts/check/check-pack-boot.mjs: REQUIRED_SQLJS_RUNTIME_FILES now
points at node_modules/sql.js/{package.json,dist/sql-wasm.js,
dist/sql-wasm.wasm} — the dependency-installed location the clean-prefix
install actually produces. REQUIRED_MACHINE_TOKEN_RUNTIME_FILES was
already correct and is unchanged.
- bin/cli/runtime/sqliteRuntime.mjs: BETTER_SQLITE3_VERSION bumped
^12.10.1 -> ^13.0.2 to match optionalDependencies (the lazy runtime
install was pulling the wrong major), and exported for the guard.
- tests/unit/pack-boot-runtime-paths.test.ts (new, TDD: RED -> GREEN):
pins that (a) no pack-boot required path references a never-publishable
vendored dist/<segment> location (driven by
PACK_ARTIFACT_NEVER_ALLOWED_SEGMENTS), (b) sql.js/node-machine-id stay
declared dependencies, (c) the lazy-install spec stays on the declared
optionalDependency major.
- tests/unit/check-pack-boot.test.ts: the sql.js contract test pinned the
old vendored path; updated to node_modules/sql.js/dist/sql-wasm.wasm.
This is alignment to the real new contract (vendoring ended), not
masking — the same test still asserts the find-missing behavior.
Electron is unaffected: the vendored dist/node_modules bundle still
exists for Electron packaging (postinstall.mjs and assembleStandalone.mjs
untouched).
Refs #11242
Refs #10296
2026-08-23 13:13:32 -03:00
..
2026-08-23 10:20:06 -03:00
2026-08-21 04:22:46 -03:00
2026-08-22 22:51:02 -03:00
2026-08-21 14:59:11 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 09:48:16 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 06:29:14 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 20:28:16 -03:00
2026-08-23 10:09:07 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 06:28:33 -03:00
2026-08-21 20:59:57 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 15:07:19 -03:00
2026-08-21 14:16:42 -03:00
2026-08-23 01:42:35 -03:00
2026-08-23 10:13:31 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 09:49:12 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 10:49:48 -03:00
2026-08-18 10:50:39 -03:00
2026-08-18 10:50:01 -03:00
2026-08-20 18:04:22 -03:00
2026-08-20 11:47:38 -03:00
2026-08-19 12:11:19 -03:00
2026-08-20 11:48:07 -03:00
2026-08-20 15:19:59 -03:00
2026-08-21 14:17:37 -03:00
2026-08-21 20:28:16 -03:00
2026-08-18 10:52:01 -03:00
2026-08-20 23:54:07 -03:00
2026-08-22 20:43:15 -03:00
2026-08-22 23:09:16 -03:00
2026-08-22 21:51:22 -03:00
2026-08-18 10:49:24 -03:00
2026-08-21 13:57:42 -03:00
2026-08-21 13:57:42 -03:00
2026-08-18 10:50:45 -03:00
2026-08-18 10:50:45 -03:00
2026-08-18 11:31:53 -03:00
2026-08-18 11:31:46 -03:00
2026-08-20 06:28:41 -03:00
2026-08-18 11:32:33 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:50:35 -03:00
2026-08-18 10:50:35 -03:00
2026-08-20 15:07:19 -03:00
2026-08-21 04:24:45 -03:00
2026-08-20 15:37:10 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 10:51:57 -03:00
2026-08-18 10:51:57 -03:00
2026-08-18 10:51:57 -03:00
2026-08-18 10:51:57 -03:00
2026-08-20 22:15:48 -03:00
2026-08-18 10:57:20 -03:00
2026-08-21 08:02:16 -03:00
2026-08-18 10:50:05 -03:00
2026-08-23 01:05:08 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 15:37:10 -03:00
2026-08-18 12:27:46 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 22:15:48 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-21 20:28:16 -03:00
2026-08-18 11:25:46 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 06:39:23 -03:00
2026-08-19 11:54:52 -03:00
2026-08-21 14:00:23 -03:00
2026-08-18 10:57:31 -03:00
2026-08-19 11:08:40 -03:00
2026-08-18 10:52:48 -03:00
2026-08-19 11:08:45 -03:00
2026-08-20 11:47:53 -03:00
2026-08-18 10:53:01 -03:00
2026-08-22 23:09:16 -03:00
2026-08-18 10:58:07 -03:00
2026-08-21 04:18:55 -03:00
2026-08-18 10:49:24 -03:00
2026-08-21 14:00:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 17:28:30 -03:00
2026-08-18 10:53:24 -03:00
2026-08-20 11:48:03 -03:00
2026-08-23 01:24:25 -03:00
2026-08-20 13:00:01 -03:00
2026-08-21 02:57:48 -03:00
2026-08-21 20:28:16 -03:00
2026-08-23 06:45:42 -03:00
2026-08-18 11:42:47 -03:00
2026-08-21 22:06:26 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:49:56 -03:00
2026-08-18 10:50:09 -03:00
2026-08-21 21:28:43 -03:00
2026-08-20 06:29:38 -03:00
2026-08-18 10:49:15 -03:00
2026-08-18 10:49:15 -03:00
2026-08-20 10:27:18 -03:00
2026-08-21 14:00:39 -03:00
2026-08-18 10:49:15 -03:00
2026-08-20 18:26:02 -03:00
2026-08-22 16:55:09 -03:00
2026-08-18 21:51:01 -03:00
2026-08-22 23:09:16 -03:00
2026-08-20 15:20:08 -03:00
2026-08-20 09:31:12 -03:00
2026-08-22 23:09:16 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:50:09 -03:00
2026-08-18 10:50:09 -03:00
2026-08-22 22:51:02 -03:00
2026-08-21 14:16:42 -03:00
2026-08-21 14:16:42 -03:00
2026-08-21 14:00:46 -03:00
2026-08-18 11:25:46 -03:00
2026-08-19 12:10:36 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 22:20:54 -03:00
2026-08-23 01:26:48 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 09:46:13 -03:00
2026-08-18 11:25:46 -03:00
2026-08-23 07:01:04 -03:00
2026-08-18 11:32:33 -03:00
2026-08-20 17:28:37 -03:00
2026-08-20 22:04:03 -03:00
2026-08-18 10:52:33 -03:00
2026-08-21 13:58:56 -03:00
2026-08-21 13:58:56 -03:00
2026-08-22 22:58:58 -03:00
2026-08-18 10:52:11 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:56:20 -03:00
2026-08-18 10:49:19 -03:00
2026-08-23 13:13:32 -03:00
2026-08-21 00:29:01 -03:00
2026-08-20 13:05:46 -03:00
2026-08-22 19:00:39 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:50:49 -03:00
2026-08-20 20:04:20 -03:00
2026-08-23 09:47:07 -03:00
2026-08-22 19:00:39 -03:00
2026-08-20 10:27:26 -03:00
2026-08-21 13:57:46 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 07:00:36 -03:00
2026-08-22 21:51:19 -03:00
2026-08-18 08:25:16 -03:00
2026-08-18 08:25:16 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 15:47:15 -03:00
2026-08-20 22:41:27 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 15:07:19 -03:00
2026-08-19 12:11:52 -03:00
2026-08-18 10:51:03 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-19 12:11:43 -03:00
2026-08-18 08:25:16 -03:00
2026-08-18 08:25:16 -03:00
2026-08-19 11:08:34 -03:00
2026-08-23 09:48:16 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 08:25:16 -03:00
2026-08-18 21:51:25 -03:00
2026-08-23 10:20:06 -03:00
2026-08-22 15:52:13 -03:00
2026-08-21 02:13:00 -03:00
2026-08-23 07:00:36 -03:00
2026-08-19 12:10:15 -03:00
2026-08-21 04:12:53 -03:00
2026-08-20 09:46:13 -03:00
2026-08-20 09:46:13 -03:00
2026-08-23 10:20:06 -03:00
2026-08-22 22:49:11 -03:00
2026-08-20 09:46:13 -03:00
2026-08-20 06:28:45 -03:00
2026-08-20 06:28:45 -03:00
2026-08-23 09:47:03 -03:00
2026-08-20 06:28:45 -03:00
2026-08-20 09:46:13 -03:00
2026-08-20 06:30:39 -03:00
2026-08-18 10:53:05 -03:00
2026-08-20 06:28:45 -03:00
2026-08-18 11:25:46 -03:00
2026-08-20 22:02:14 -03:00
2026-08-22 14:39:58 -03:00
2026-08-20 20:34:38 -03:00
2026-08-18 10:51:16 -03:00
2026-08-20 22:20:54 -03:00
2026-08-22 21:51:19 -03:00
2026-08-21 02:12:49 -03:00
2026-08-20 22:20:54 -03:00
2026-08-20 06:30:43 -03:00
2026-08-22 21:51:19 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 10:51:42 -03:00
2026-08-20 09:49:12 -03:00
2026-08-21 13:57:49 -03:00
2026-08-21 02:57:48 -03:00
2026-08-22 21:51:19 -03:00
2026-08-18 10:51:16 -03:00
2026-08-18 10:49:24 -03:00
2026-08-18 10:49:24 -03:00
2026-08-20 06:30:12 -03:00
2026-08-22 14:39:22 -03:00
2026-08-18 11:31:46 -03:00
2026-08-20 15:47:05 -03:00
2026-08-18 12:27:46 -03:00
2026-08-22 23:09:16 -03:00
2026-08-20 12:59:57 -03:00
2026-08-21 13:57:49 -03:00
2026-08-18 10:51:16 -03:00
2026-08-22 23:09:16 -03:00
2026-08-20 23:07:25 -03:00
2026-08-19 11:08:22 -03:00
2026-08-18 10:49:24 -03:00
2026-08-20 09:49:12 -03:00
2026-08-21 02:18:25 -03:00
2026-08-18 10:51:16 -03:00
2026-08-20 23:14:00 -03:00
2026-08-20 23:14:00 -03:00
2026-08-21 22:16:45 -03:00
2026-08-21 22:16:45 -03:00
2026-08-21 14:58:53 -03:00
2026-08-21 22:16:45 -03:00
2026-08-21 22:16:45 -03:00
2026-08-18 10:51:34 -03:00
2026-08-21 21:06:14 -03:00
2026-08-22 14:40:09 -03:00
2026-08-20 13:21:07 -03:00
2026-08-20 06:29:42 -03:00
2026-08-23 02:24:01 -03:00
2026-08-22 21:53:08 -03:00
2026-08-22 16:19:57 -03:00
2026-08-18 11:32:33 -03:00
2026-08-18 11:32:33 -03:00
2026-08-20 15:34:32 -03:00
2026-08-18 11:32:33 -03:00
2026-08-18 11:32:33 -03:00
2026-08-21 22:32:19 -03:00
2026-08-21 22:32:19 -03:00
2026-08-21 22:32:19 -03:00
2026-08-20 06:29:30 -03:00
2026-08-20 10:27:23 -03:00
2026-08-21 14:00:27 -03:00
2026-08-21 14:00:27 -03:00
2026-08-20 10:27:23 -03:00
2026-08-19 12:49:49 -03:00
2026-08-19 12:49:49 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 00:07:45 -03:00
2026-08-20 12:08:41 -03:00
2026-08-20 06:29:11 -03:00
2026-08-21 00:07:45 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-20 06:29:11 -03:00
2026-08-21 10:28:01 -03:00
2026-08-22 23:09:16 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-21 10:28:01 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 04:11:14 -03:00
2026-08-23 01:01:11 -03:00
2026-08-21 08:25:23 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 14:16:42 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 10:27:10 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 13:00:01 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-22 14:39:58 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 06:30:16 -03:00
2026-08-18 10:51:52 -03:00
2026-08-19 11:08:07 -03:00
2026-08-19 11:08:07 -03:00
2026-08-18 12:27:46 -03:00
2026-08-21 20:27:36 -03:00
2026-08-23 01:24:19 -03:00
2026-08-18 11:44:18 -03:00
2026-08-20 22:02:14 -03:00
2026-08-19 12:10:44 -03:00
2026-08-18 10:57:31 -03:00
2026-08-20 09:49:55 -03:00
2026-08-21 08:25:10 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 04:25:22 -03:00
2026-08-21 08:25:17 -03:00
2026-08-20 11:33:45 -03:00
2026-08-20 11:33:45 -03:00
2026-08-21 08:02:22 -03:00
2026-08-20 11:33:45 -03:00
2026-08-20 13:21:11 -03:00
2026-08-20 13:21:11 -03:00
2026-08-18 10:52:43 -03:00
2026-08-18 10:52:43 -03:00
2026-08-18 10:52:16 -03:00
2026-08-18 10:52:43 -03:00
2026-08-22 22:49:11 -03:00
2026-08-18 10:52:24 -03:00
2026-08-20 17:00:43 -03:00
2026-08-18 10:49:24 -03:00
2026-08-18 11:55:08 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 22:16:45 -03:00
2026-08-21 08:25:03 -03:00
2026-08-19 11:18:30 -03:00
2026-08-22 18:55:23 -03:00
2026-08-18 12:08:38 -03:00
2026-08-18 12:27:46 -03:00
2026-08-23 07:01:04 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 10:57:20 -03:00
2026-08-18 12:08:38 -03:00
2026-08-18 11:31:46 -03:00
2026-08-23 10:20:06 -03:00
2026-08-19 12:10:22 -03:00
2026-08-20 20:37:22 -03:00
2026-08-19 11:08:17 -03:00
2026-08-20 06:37:02 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 01:24:28 -03:00
2026-08-18 10:49:24 -03:00
2026-08-18 10:49:24 -03:00
2026-08-21 08:25:23 -03:00
2026-08-18 10:51:25 -03:00
2026-08-20 22:53:24 -03:00
2026-08-21 08:25:23 -03:00
2026-08-20 12:10:38 -03:00
2026-08-23 01:24:19 -03:00
2026-08-18 10:52:56 -03:00
2026-08-18 10:52:43 -03:00
2026-08-18 12:27:46 -03:00
2026-08-22 19:00:39 -03:00
2026-08-18 11:43:16 -03:00
2026-08-18 11:43:16 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 10:51:12 -03:00
2026-08-22 22:54:49 -03:00
2026-08-22 23:09:16 -03:00
2026-08-19 12:09:43 -03:00
2026-08-19 11:08:29 -03:00
2026-08-21 00:29:01 -03:00
2026-08-20 09:31:12 -03:00
2026-08-23 07:00:36 -03:00
2026-08-22 23:09:16 -03:00
2026-08-18 11:25:46 -03:00
2026-08-23 06:44:29 -03:00
2026-08-20 06:29:45 -03:00
2026-08-19 11:08:34 -03:00
2026-08-22 14:40:57 -03:00
2026-08-20 15:20:19 -03:00
2026-08-20 12:08:37 -03:00
2026-08-18 11:32:33 -03:00
2026-08-18 10:57:44 -03:00
2026-08-20 22:15:48 -03:00
2026-08-22 16:08:22 -03:00
2026-08-21 02:13:07 -03:00
2026-08-18 10:52:43 -03:00
2026-08-18 10:52:43 -03:00
2026-08-23 09:48:48 -03:00
2026-08-20 06:28:37 -03:00
2026-08-20 06:28:37 -03:00
2026-08-20 22:20:54 -03:00
2026-08-21 04:25:56 -03:00
2026-08-21 04:25:56 -03:00
2026-08-22 18:55:23 -03:00
2026-08-21 04:25:56 -03:00
2026-08-21 04:25:56 -03:00
2026-08-20 06:29:08 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 20:34:59 -03:00
2026-08-18 10:53:29 -03:00
2026-08-23 10:20:06 -03:00
2026-08-22 14:40:57 -03:00
2026-08-18 11:25:46 -03:00
2026-08-21 08:25:07 -03:00
2026-08-20 11:31:48 -03:00
2026-08-20 11:49:51 -03:00
2026-08-23 01:24:22 -03:00
2026-08-22 18:56:45 -03:00
2026-08-22 16:54:17 -03:00
2026-08-22 23:01:04 -03:00
2026-08-23 01:03:40 -03:00
2026-08-21 04:18:55 -03:00
2026-08-18 11:32:33 -03:00
2026-08-21 22:32:19 -03:00
2026-08-21 08:50:24 -03:00
2026-08-21 22:32:19 -03:00
2026-08-20 22:15:48 -03:00
2026-08-18 10:58:40 -03:00
2026-08-23 02:18:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-19 12:11:11 -03:00
2026-08-21 20:28:16 -03:00
2026-08-23 02:18:06 -03:00
2026-08-20 06:29:49 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 15:19:50 -03:00
2026-08-20 13:00:05 -03:00
2026-08-22 21:51:16 -03:00
2026-08-20 06:28:45 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 16:35:41 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 21:37:54 -03:00
2026-08-22 23:09:16 -03:00
2026-08-19 12:49:54 -03:00
2026-08-20 17:28:30 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 07:01:07 -03:00
2026-08-21 02:13:07 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 09:31:12 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 14:16:42 -03:00
2026-08-21 02:12:49 -03:00
2026-08-20 11:31:48 -03:00
2026-08-21 03:56:57 -03:00
2026-08-21 02:13:07 -03:00
2026-08-19 12:09:43 -03:00
2026-08-21 14:16:42 -03:00
2026-08-19 12:11:19 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 11:56:00 -03:00
2026-08-21 20:28:16 -03:00
2026-08-20 22:20:54 -03:00
2026-08-18 10:52:24 -03:00
2026-08-21 08:02:19 -03:00
2026-08-18 10:58:22 -03:00
2026-08-20 20:24:42 -03:00
2026-08-20 15:07:19 -03:00
2026-08-21 20:28:16 -03:00
2026-08-18 19:23:16 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 10:49:24 -03:00
2026-08-23 02:20:12 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 20:28:16 -03:00
2026-08-22 20:14:26 -03:00
2026-08-21 20:28:16 -03:00
2026-08-20 09:46:13 -03:00
2026-08-21 20:28:16 -03:00
2026-08-18 10:53:18 -03:00
2026-08-18 10:53:18 -03:00
2026-08-22 16:06:06 -03:00
2026-08-20 20:27:26 -03:00
2026-08-20 06:30:36 -03:00
2026-08-21 14:16:42 -03:00
2026-08-21 04:02:36 -03:00
2026-08-18 10:52:33 -03:00
2026-08-22 21:51:22 -03:00
2026-08-18 10:52:33 -03:00
2026-08-18 10:52:33 -03:00
2026-08-21 02:12:53 -03:00
2026-08-18 10:51:52 -03:00
2026-08-21 02:12:53 -03:00
2026-08-21 21:06:21 -03:00
2026-08-21 14:59:03 -03:00
2026-08-23 09:47:10 -03:00
2026-08-20 23:40:55 -03:00
2026-08-18 10:52:33 -03:00
2026-08-21 20:54:44 -03:00
2026-08-22 16:01:25 -03:00
2026-08-22 14:39:12 -03:00
2026-08-21 20:55:07 -03:00
2026-08-18 10:58:40 -03:00
2026-08-22 23:09:16 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 15:20:29 -03:00
2026-08-21 20:27:46 -03:00
2026-08-20 10:27:14 -03:00
2026-08-23 13:13:32 -03:00
2026-08-18 10:50:09 -03:00
2026-08-23 01:07:32 -03:00
2026-08-22 14:28:14 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 19:34:18 -03:00
2026-08-18 11:25:46 -03:00
2026-08-22 15:59:31 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 13:11:07 -03:00
2026-08-20 13:11:03 -03:00
2026-08-22 20:38:44 -03:00
2026-08-20 23:46:03 -03:00
2026-08-18 10:50:09 -03:00
2026-08-18 11:44:18 -03:00
2026-08-19 11:48:18 -03:00
2026-08-20 20:34:19 -03:00
2026-08-20 10:30:29 -03:00
2026-08-20 10:30:29 -03:00
2026-08-20 10:30:29 -03:00
2026-08-20 10:30:29 -03:00
2026-08-20 10:30:29 -03:00
2026-08-20 10:30:29 -03:00
2026-08-23 07:00:36 -03:00
2026-08-18 12:27:46 -03:00
2026-08-22 14:39:58 -03:00
2026-08-22 14:40:35 -03:00
2026-08-21 14:58:59 -03:00
2026-08-20 16:42:02 -03:00
2026-08-18 10:51:47 -03:00
2026-08-19 11:08:12 -03:00
2026-08-19 11:08:12 -03:00
2026-08-18 12:27:46 -03:00
2026-08-23 09:47:03 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:58:40 -03:00
2026-08-18 12:27:46 -03:00
2026-08-21 22:16:45 -03:00
2026-08-20 10:36:10 -03:00
2026-08-21 04:25:56 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 10:49:24 -03:00
2026-08-18 12:27:46 -03:00
2026-08-22 15:59:31 -03:00
2026-08-21 02:18:25 -03:00
2026-08-22 23:09:16 -03:00
2026-08-18 10:51:29 -03:00
2026-08-18 12:27:46 -03:00
2026-08-20 22:15:48 -03:00
2026-08-23 10:09:07 -03:00
2026-08-20 16:35:51 -03:00
2026-08-22 23:01:04 -03:00
2026-08-22 14:39:58 -03:00
2026-08-20 09:46:13 -03:00
2026-08-22 20:41:12 -03:00
2026-08-18 10:49:24 -03:00
2026-08-20 15:19:32 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 15:47:34 -03:00
2026-08-23 01:05:08 -03:00
2026-08-20 10:31:10 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:49:24 -03:00
2026-08-21 04:17:25 -03:00
2026-08-20 10:32:38 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 10:49:52 -03:00
2026-08-18 10:49:52 -03:00
2026-08-18 11:25:46 -03:00
2026-08-20 20:29:38 -03:00
2026-08-20 06:28:37 -03:00
2026-08-23 02:20:12 -03:00
2026-08-18 10:49:19 -03:00
2026-08-18 10:49:28 -03:00
2026-08-22 18:56:45 -03:00
2026-08-18 10:49:19 -03:00
2026-08-20 20:41:59 -03:00
2026-08-18 11:31:53 -03:00
2026-08-18 10:49:19 -03:00
2026-08-19 12:10:15 -03:00
2026-08-20 08:09:42 -03:00
2026-08-22 18:56:45 -03:00
2026-08-23 01:24:16 -03:00
2026-08-20 13:22:23 -03:00
2026-08-22 23:09:16 -03:00
2026-08-22 22:58:58 -03:00
2026-08-22 14:40:57 -03:00
2026-08-22 14:40:57 -03:00
2026-08-20 09:31:12 -03:00
2026-08-23 10:00:17 -03:00
2026-08-22 14:39:47 -03:00
2026-08-20 22:15:48 -03:00
2026-08-18 10:52:33 -03:00
2026-08-22 23:09:16 -03:00
2026-08-21 04:17:25 -03:00
2026-08-21 04:17:25 -03:00
2026-08-22 16:26:38 -03:00
2026-08-20 06:28:37 -03:00
2026-08-20 09:49:12 -03:00
2026-08-18 10:50:49 -03:00
2026-08-18 10:50:49 -03:00
2026-08-18 10:50:49 -03:00
2026-08-21 20:27:33 -03:00
2026-08-18 10:50:15 -03:00
2026-08-20 09:46:13 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 11:32:33 -03:00
2026-08-23 10:20:06 -03:00
2026-08-23 06:41:55 -03:00
2026-08-20 09:46:13 -03:00
2026-08-20 22:20:54 -03:00
2026-08-20 20:42:02 -03:00
2026-08-21 22:16:45 -03:00
2026-08-22 14:39:47 -03:00
2026-08-22 14:40:45 -03:00
2026-08-20 09:49:55 -03:00
2026-08-18 10:49:48 -03:00
2026-08-20 09:49:55 -03:00
2026-08-20 13:21:03 -03:00
2026-08-20 22:20:54 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 10:49:24 -03:00
2026-08-23 10:20:06 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 17:28:30 -03:00
2026-08-22 16:13:26 -03:00
2026-08-21 04:07:56 -03:00
2026-08-20 11:48:18 -03:00
2026-08-20 20:37:22 -03:00
2026-08-23 10:09:07 -03:00
2026-08-23 10:20:06 -03:00
2026-08-21 14:00:35 -03:00
2026-08-20 06:30:05 -03:00
2026-08-23 01:00:14 -03:00
2026-08-20 06:29:34 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 22:15:48 -03:00
2026-08-23 10:20:06 -03:00
2026-08-18 11:25:46 -03:00
2026-08-18 10:51:38 -03:00
2026-08-18 11:32:33 -03:00
2026-08-18 11:32:33 -03:00
2026-08-20 23:59:21 -03:00
2026-08-21 14:59:07 -03:00
2026-08-21 00:13:31 -03:00
2026-08-21 00:13:31 -03:00
2026-08-20 17:28:37 -03:00
2026-08-21 00:13:31 -03:00
2026-08-21 00:13:31 -03:00
2026-08-20 23:14:00 -03:00
2026-08-22 23:09:16 -03:00
2026-08-18 11:25:46 -03:00
2026-08-21 14:00:46 -03:00
2026-08-18 10:58:07 -03:00
2026-08-18 10:58:07 -03:00
2026-08-20 22:15:48 -03:00
2026-08-18 10:58:07 -03:00
2026-08-22 21:56:26 -03:00
2026-08-22 21:54:48 -03:00
2026-08-22 22:49:11 -03:00
2026-08-22 14:38:28 -03:00
2026-08-22 14:37:58 -03:00
2026-08-20 17:28:30 -03:00
2026-08-20 06:30:46 -03:00
2026-08-22 22:58:58 -03:00
2026-08-20 15:19:41 -03:00
2026-08-21 08:25:14 -03:00
2026-08-22 23:09:16 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 12:27:46 -03:00
2026-08-23 07:00:36 -03:00
2026-08-20 06:30:31 -03:00
2026-08-22 23:09:16 -03:00
2026-08-21 20:27:29 -03:00
2026-08-18 10:49:48 -03:00
2026-08-20 10:27:26 -03:00
2026-08-21 14:16:42 -03:00
2026-08-22 18:55:23 -03:00
2026-08-20 06:29:03 -03:00
2026-08-18 10:49:48 -03:00
2026-08-22 22:58:58 -03:00
2026-08-20 22:33:39 -03:00
2026-08-22 22:58:58 -03:00
2026-08-22 19:00:39 -03:00
2026-08-18 10:49:24 -03:00
2026-08-20 11:47:34 -03:00
2026-08-20 20:33:19 -03:00
2026-08-21 03:49:01 -03:00
2026-08-18 12:27:46 -03:00
2026-08-21 02:18:25 -03:00
2026-08-22 22:39:56 -03:00
2026-08-20 06:28:37 -03:00
2026-08-19 12:02:48 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 10:50:26 -03:00
2026-08-21 20:49:18 -03:00
2026-08-21 22:06:43 -03:00
2026-08-22 22:49:08 -03:00
2026-08-21 08:25:14 -03:00
2026-08-18 12:27:46 -03:00
2026-08-18 08:25:13 -03:00
2026-08-18 10:50:31 -03:00
2026-08-21 02:13:07 -03:00
2026-08-22 23:09:16 -03:00
2026-08-21 08:50:36 -03:00
2026-08-21 14:16:42 -03:00
2026-08-20 06:37:02 -03:00
2026-08-18 11:25:46 -03:00
2026-08-21 21:10:10 -03:00
2026-08-21 14:16:42 -03:00
2026-08-23 10:20:06 -03:00
2026-08-22 14:39:01 -03:00
2026-08-22 14:39:01 -03:00
2026-08-22 14:39:01 -03:00
2026-08-22 14:39:01 -03:00
2026-08-20 11:48:14 -03:00
2026-08-21 14:16:42 -03:00
2026-08-18 10:52:52 -03:00
2026-08-20 18:06:41 -03:00
2026-08-22 22:54:49 -03:00
2026-08-22 22:54:49 -03:00
2026-08-18 11:56:00 -03:00