polycoding 1.0.0__tar.gz → 1.0.1__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.
- {polycoding-1.0.0 → polycoding-1.0.1}/PKG-INFO +1 -1
- {polycoding-1.0.0 → polycoding-1.0.1}/entrypoint.sh +1 -1
- {polycoding-1.0.0 → polycoding-1.0.1}/pyproject.toml +21 -39
- {polycoding-1.0.0 → polycoding-1.0.1}/.dockerignore +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/.env.example +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/.gitignore +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/AGENTS.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/Dockerfile +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/Makefile +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/alembic.ini +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/ARCHITECTURE.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/CELERY_README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/CLI_USAGE.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/CONTEXTPLUS.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/FLOWS.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/HOOK_ARCHITECTURE.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/INJECT.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/NIGHTSHIFT.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/PLUGIN.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/PMTOOLS.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/QUICKSTART.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/RETRO.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/docs/SPECIFY.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/migrations/README +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/migrations/env.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/migrations/script.py.mako +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/migrations/versions/0a5f21557119_repo_details_and_flow_incolumns.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/migrations/versions/1defbd72658b_initial.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/AGENTS.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/agentsmd/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/agentsmd/loader_tool.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/agentsmd/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/bootstrap.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/base.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/dispatcher.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/hooks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/redis/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/redis/channel.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/stream/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/stream/config.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/stream/server.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/stream/server_app.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/channels/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/db.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/flow.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/main.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/project.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/server.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/utils.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/cli/worker.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/base.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/conversation_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/conversation_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/conversation_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/conversation_crew/conversation_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/conversation_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/implement_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/implement_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/implement_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/implement_crew/implement_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/implement_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/plan_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/plan_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/plan_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/plan_crew/plan_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/plan_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/ralph_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/ralph_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/ralph_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/ralph_crew/ralph_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/ralph_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/retro_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/retro_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/retro_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/retro_crew/retro_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/postmortem.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/review_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/review_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/streaming/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/streaming/callback.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/streaming/factory.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/streaming/publisher.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/streaming/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/test_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/test_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/test_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/test_crew/test_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/test_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/verify_crew/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/verify_crew/config/agents.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/verify_crew/config/tasks.yaml +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/verify_crew/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/crews/verify_crew/verify_crew.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/base.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/protocol.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/ralph/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/ralph/flow.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/ralph/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/ralph/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/specify/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/specify/flow.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/specify/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/flows/specify/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/hooks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/notes.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/operations.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/gitcore/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/app.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/auth.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/config.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/installation_manager.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/label_mapper.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/models.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/github_app/webhook_handler.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/glm.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/channels.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/context.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/hooks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/protocol.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/modules/registry.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/persistence/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/persistence/config.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/persistence/postgres.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/persistence/tasks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/base.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/config.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/factory.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/flow_runner.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/github.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/github_conversation.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/github_projects_client.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/hooks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/project_manager/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/README.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/analyzer.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/hooks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/retro/types.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tasks/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tasks/config.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tasks/tasks.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tasks/worker.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/directory_read_tool.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/exec_tool.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/file_read_tool.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/base.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/issues.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/labels.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/projects.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/src/tools/project_management/pull_requests.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/task_templates/custom_generate_result.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/task_templates/custom_implement.md +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/__init__.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_agents_md_loader.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_agentsmd_module.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_context_injector.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_flows.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_gitcore.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_github_manager.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_project_manager_plugin.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_retro.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/test_tools/test_issues.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/tests/tools/test_project_management_tools.py +0 -0
- {polycoding-1.0.0 → polycoding-1.0.1}/uv.lock +0 -0
|
@@ -29,7 +29,7 @@ worker)
|
|
|
29
29
|
|
|
30
30
|
flower)
|
|
31
31
|
echo "Launching Flower:"
|
|
32
|
-
exec uv run celery -A
|
|
32
|
+
exec uv run celery -A tasks.worker.app flower --address=${APP_HOST:="0.0.0.0"} --port=${APP_PORT:=5000} $*
|
|
33
33
|
;;
|
|
34
34
|
|
|
35
35
|
api)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "polycoding"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.1"
|
|
4
4
|
description = "Coding agent that lives in your project management tool"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
@@ -103,55 +103,37 @@ build_command = "uv build"
|
|
|
103
103
|
# Use the emoji commit parser instead of conventional
|
|
104
104
|
commit_parser = "emoji"
|
|
105
105
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
":boom:", # Also keep the text version for compatibility
|
|
109
|
-
]
|
|
106
|
+
[tool.semantic_release.commit_parser_options]
|
|
107
|
+
major_tags = ["💥"]
|
|
110
108
|
|
|
111
109
|
# MINOR version bump (new features)
|
|
112
110
|
minor_tags = [
|
|
113
|
-
"✨",
|
|
114
|
-
"🎨",
|
|
115
|
-
"📱",
|
|
116
|
-
"🥚",
|
|
117
|
-
"📈",
|
|
118
|
-
":sparkles:", # Text version fallback
|
|
119
|
-
":lipstick:",
|
|
120
|
-
":iphone:",
|
|
121
|
-
":egg:",
|
|
122
|
-
":chart_with_upwards_trend:",
|
|
111
|
+
"✨",
|
|
112
|
+
"🎨",
|
|
113
|
+
"📱",
|
|
114
|
+
"🥚",
|
|
115
|
+
"📈",
|
|
123
116
|
]
|
|
124
117
|
|
|
125
118
|
# PATCH version bump (fixes)
|
|
126
119
|
patch_tags = [
|
|
127
|
-
"🐛",
|
|
128
|
-
"💚",
|
|
129
|
-
"🔒",
|
|
130
|
-
"⚡️",
|
|
131
|
-
"🚑️",
|
|
132
|
-
"👔",
|
|
133
|
-
"🩹",
|
|
134
|
-
":ambulance:", # Text version fallback
|
|
135
|
-
":lock:",
|
|
136
|
-
":bug:",
|
|
137
|
-
":zap:",
|
|
138
|
-
":goal_net:",
|
|
139
|
-
":alien:",
|
|
140
|
-
":wheelchair:",
|
|
120
|
+
"🐛",
|
|
121
|
+
"💚",
|
|
122
|
+
"🔒",
|
|
123
|
+
"⚡️",
|
|
124
|
+
"🚑️",
|
|
125
|
+
"👔",
|
|
126
|
+
"🩹",
|
|
141
127
|
]
|
|
142
128
|
|
|
143
129
|
# Allowed but NO version bump
|
|
144
130
|
other_allowed_tags = [
|
|
145
|
-
"📝",
|
|
146
|
-
"♻️",
|
|
147
|
-
"🔧",
|
|
148
|
-
"👷",
|
|
149
|
-
"✅",
|
|
150
|
-
"🎨",
|
|
151
|
-
":memo:",
|
|
152
|
-
":recycle:",
|
|
153
|
-
":construction_worker:",
|
|
154
|
-
":white_check_mark:",
|
|
131
|
+
"📝",
|
|
132
|
+
"♻️",
|
|
133
|
+
"🔧",
|
|
134
|
+
"👷",
|
|
135
|
+
"✅",
|
|
136
|
+
"🎨",
|
|
155
137
|
]
|
|
156
138
|
|
|
157
139
|
# Parser behavior
|
|
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
|
|
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
|