agentpack-cli 0.3.15__tar.gz → 0.3.16__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/PKG-INFO +9 -2
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/README.md +7 -1
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/pyproject.toml +2 -1
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/__init__.py +1 -1
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/pack.py +1 -1
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/watch.py +1 -1
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/.gitignore +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/LICENSE +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/antigravity.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/base.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/claude.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/codex.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/cursor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/detect.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/generic.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/adapters/windsurf.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/dependency_graph.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/go_imports.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/java_imports.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/js_ts_imports.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/monorepo.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/naming_signals.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/python_imports.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/ranking.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/repo_map.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/role_inference.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/rust_imports.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/symbols.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/task_classifier.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/analysis/tests.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/application/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/application/pack_service.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/cli.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/_shared.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/benchmark.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/ci_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/claude_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/dev_check.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/diagnose_selection.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/diff.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/doctor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/eval_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/explain.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/guard.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/hook_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/ignore_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/init.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/install.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/learn.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/mcp_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/migrate.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/monitor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/next_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/quickstart.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/release_check.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/release_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/repair.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/route.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/scan.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/skills.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/start_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/state_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/stats.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/status.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/summarize.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/task_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/threads.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/tune.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/verify_wheel.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/commands/workflow_cmd.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/bootstrap.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/cache.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/changed_paths.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/config.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/context_pack.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/diff.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/evals.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/execution_state.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/git.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/git_hooks.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/global_install.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/ignore.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/merkle.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/models.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/redactor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/scanner.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/snapshot.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/task_freshness.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/thread_context.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/token_estimator.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/core/vscode_tasks.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/data/agentpack.md +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/antigravity.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/claude.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/codex.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/cursor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/installers/windsurf.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/agents.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/git_hooks.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/global_install.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/platform.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/integrations/vscode_tasks.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/collector.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/extractor.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/feedback.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/lesson_ranker.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/models.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/provider.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/quality.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/renderers.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/learning/skill_map.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/mcp_server.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/renderers/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/renderers/compact.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/renderers/markdown.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/renderers/receipts.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/discovery.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/models.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/parser.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/prompt_builder.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/scoring.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/router/service.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/session/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/session/state.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/summaries/__init__.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/summaries/base.py +0 -0
- {agentpack_cli-0.3.15 → agentpack_cli-0.3.16}/src/agentpack/summaries/offline.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentpack-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.16
|
|
4
4
|
Summary: Local MCP context router for Claude Code, Codex, Cursor, and AI coding agents.
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -22,6 +22,7 @@ Requires-Dist: tiktoken>=0.7.0
|
|
|
22
22
|
Requires-Dist: tomli-w>=1.0.0
|
|
23
23
|
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
|
|
24
24
|
Requires-Dist: typer>=0.12.0
|
|
25
|
+
Requires-Dist: watchdog>=4.0.0
|
|
25
26
|
Provides-Extra: all
|
|
26
27
|
Requires-Dist: mcp>=1.0.0; extra == 'all'
|
|
27
28
|
Requires-Dist: watchdog>=4.0.0; extra == 'all'
|
|
@@ -63,12 +64,18 @@ pipx run --spec agentpack-cli agentpack route --task "fix auth token expiry"
|
|
|
63
64
|
|
|
64
65
|

|
|
65
66
|
|
|
66
|
-
> **Status: alpha (v0.3.
|
|
67
|
+
> **Status: alpha (v0.3.16).** Works, tested, and used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Current benchmarks are useful regression checks, not broad proof that AgentPack improves coding-agent success. API may change before 1.0.
|
|
67
68
|
>
|
|
68
69
|
> **Platform note:** macOS, Linux, and Windows are supported. Windows support targets PowerShell plus Git for Windows. `cmd.exe` and bare Git setups are not a supported path yet.
|
|
69
70
|
>
|
|
70
71
|
> **Name note:** PyPI package is `agentpack-cli`, npm package is `@vishal2612200/agentpack`, and the command is `agentpack`. This project is unrelated to AgentPack dataset papers or other repos with the same name.
|
|
71
72
|
|
|
73
|
+
## What's New in 0.3.16
|
|
74
|
+
|
|
75
|
+
`0.3.16` bundles `watchdog` in normal installs so `agentpack watch` uses native
|
|
76
|
+
filesystem events by default instead of polling after `pipx`, `pip`, or npm
|
|
77
|
+
wrapper installation.
|
|
78
|
+
|
|
72
79
|
## What's New in 0.3.15
|
|
73
80
|
|
|
74
81
|
AgentPack Router now recommends skills with stronger local signals: richer
|
|
@@ -24,12 +24,18 @@ pipx run --spec agentpack-cli agentpack route --task "fix auth token expiry"
|
|
|
24
24
|
|
|
25
25
|

|
|
26
26
|
|
|
27
|
-
> **Status: alpha (v0.3.
|
|
27
|
+
> **Status: alpha (v0.3.16).** Works, tested, and used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Current benchmarks are useful regression checks, not broad proof that AgentPack improves coding-agent success. API may change before 1.0.
|
|
28
28
|
>
|
|
29
29
|
> **Platform note:** macOS, Linux, and Windows are supported. Windows support targets PowerShell plus Git for Windows. `cmd.exe` and bare Git setups are not a supported path yet.
|
|
30
30
|
>
|
|
31
31
|
> **Name note:** PyPI package is `agentpack-cli`, npm package is `@vishal2612200/agentpack`, and the command is `agentpack`. This project is unrelated to AgentPack dataset papers or other repos with the same name.
|
|
32
32
|
|
|
33
|
+
## What's New in 0.3.16
|
|
34
|
+
|
|
35
|
+
`0.3.16` bundles `watchdog` in normal installs so `agentpack watch` uses native
|
|
36
|
+
filesystem events by default instead of polling after `pipx`, `pip`, or npm
|
|
37
|
+
wrapper installation.
|
|
38
|
+
|
|
33
39
|
## What's New in 0.3.15
|
|
34
40
|
|
|
35
41
|
AgentPack Router now recommends skills with stronger local signals: richer
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "agentpack-cli"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.16"
|
|
4
4
|
description = "Local MCP context router for Claude Code, Codex, Cursor, and AI coding agents."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -24,6 +24,7 @@ dependencies = [
|
|
|
24
24
|
"pydantic>=2.0.0",
|
|
25
25
|
"tomli-w>=1.0.0",
|
|
26
26
|
"tiktoken>=0.7.0",
|
|
27
|
+
"watchdog>=4.0.0",
|
|
27
28
|
"tomli>=2.0.0; python_version < '3.11'"
|
|
28
29
|
]
|
|
29
30
|
|
|
@@ -354,7 +354,7 @@ def _pack_watch(
|
|
|
354
354
|
from watchdog.events import FileSystemEventHandler
|
|
355
355
|
except ImportError:
|
|
356
356
|
console.print("[red]watchdog is required for --watch mode.[/]")
|
|
357
|
-
console.print("Install it: [bold]
|
|
357
|
+
console.print("Install it in this environment: [bold]python -m pip install watchdog[/]")
|
|
358
358
|
raise typer.Exit(1)
|
|
359
359
|
|
|
360
360
|
root = _root()
|
|
@@ -66,7 +66,7 @@ def register(app: typer.Typer) -> None:
|
|
|
66
66
|
raise ImportError("watchdog not installed")
|
|
67
67
|
_watch_with_watchdog(root, effective_agent, effective_mode, budget, debounce, state)
|
|
68
68
|
except ImportError:
|
|
69
|
-
console.print("[dim]watchdog
|
|
69
|
+
console.print("[dim]watchdog unavailable — using polling[/]")
|
|
70
70
|
_watch_polling(root, effective_agent, effective_mode, budget, debounce, state)
|
|
71
71
|
|
|
72
72
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|