vanna 0.7.6__tar.gz → 0.7.7__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.
- vanna-0.7.7/LICENSE +21 -0
- {vanna-0.7.6 → vanna-0.7.7}/PKG-INFO +5 -4
- {vanna-0.7.6 → vanna-0.7.7}/pyproject.toml +3 -3
- vanna-0.7.7/src/vanna/cohere/__init__.py +2 -0
- vanna-0.7.7/src/vanna/cohere/cohere_chat.py +94 -0
- vanna-0.7.7/src/vanna/cohere/cohere_embeddings.py +71 -0
- {vanna-0.7.6 → vanna-0.7.7}/README.md +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/ZhipuAI/ZhipuAI_Chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/ZhipuAI/ZhipuAI_embeddings.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/ZhipuAI/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/advanced/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/anthropic/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/anthropic/anthropic_chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/azuresearch/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/azuresearch/azuresearch_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/base/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/base/base.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/bedrock/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/bedrock/bedrock_converse.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/chromadb/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/chromadb/chromadb_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/deepseek/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/deepseek/deepseek_chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/exceptions/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/faiss/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/faiss/faiss.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/flask/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/flask/assets.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/flask/auth.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/google/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/google/bigquery_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/google/gemini_chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/hf/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/hf/hf.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/local.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/marqo/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/marqo/marqo.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/milvus/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/milvus/milvus_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mistral/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mistral/mistral.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mock/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mock/embedding.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mock/llm.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/mock/vectordb.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/ollama/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/ollama/ollama.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/openai/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/openai/openai_chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/openai/openai_embeddings.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/opensearch/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/opensearch/opensearch_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/opensearch/opensearch_vector_semantic.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/oracle/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/oracle/oracle_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/pgvector/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/pgvector/pgvector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/pinecone/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/pinecone/pinecone_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qdrant/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qdrant/qdrant.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianfan/Qianfan_Chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianfan/Qianfan_embeddings.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianfan/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianwen/QianwenAI_chat.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianwen/QianwenAI_embeddings.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/qianwen/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/remote.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/types/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/utils.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/vannadb/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/vannadb/vannadb_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/vllm/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/vllm/vllm.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/weaviate/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/weaviate/weaviate_vector.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/xinference/__init__.py +0 -0
- {vanna-0.7.6 → vanna-0.7.7}/src/vanna/xinference/xinference.py +0 -0
vanna-0.7.7/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Vanna.AI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: vanna
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.7
|
|
4
4
|
Summary: Generate SQL queries from natural language
|
|
5
5
|
Author-email: Zain Hoda <zain@vanna.ai>
|
|
6
6
|
Requires-Python: >=3.9
|
|
@@ -8,6 +8,7 @@ Description-Content-Type: text/markdown
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
+
License-File: LICENSE
|
|
11
12
|
Requires-Dist: requests
|
|
12
13
|
Requires-Dist: tabulate
|
|
13
14
|
Requires-Dist: plotly
|
|
@@ -40,7 +41,7 @@ Requires-Dist: httpx ; extra == "all"
|
|
|
40
41
|
Requires-Dist: opensearch-py ; extra == "all"
|
|
41
42
|
Requires-Dist: opensearch-dsl ; extra == "all"
|
|
42
43
|
Requires-Dist: transformers ; extra == "all"
|
|
43
|
-
Requires-Dist: pinecone
|
|
44
|
+
Requires-Dist: pinecone ; extra == "all"
|
|
44
45
|
Requires-Dist: pymilvus[model] ; extra == "all"
|
|
45
46
|
Requires-Dist: weaviate-client ; extra == "all"
|
|
46
47
|
Requires-Dist: azure-search-documents ; extra == "all"
|
|
@@ -86,7 +87,7 @@ Requires-Dist: langchain-huggingface ; extra == "opensearch"
|
|
|
86
87
|
Requires-Dist: oracledb ; extra == "oracle"
|
|
87
88
|
Requires-Dist: chromadb ; extra == "oracle"
|
|
88
89
|
Requires-Dist: langchain-postgres>=0.0.12 ; extra == "pgvector"
|
|
89
|
-
Requires-Dist: pinecone
|
|
90
|
+
Requires-Dist: pinecone ; extra == "pinecone"
|
|
90
91
|
Requires-Dist: fastembed ; extra == "pinecone"
|
|
91
92
|
Requires-Dist: psycopg2-binary ; extra == "postgres"
|
|
92
93
|
Requires-Dist: db-dtypes ; extra == "postgres"
|
|
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "vanna"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.7"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Zain Hoda", email="zain@vanna.ai" },
|
|
10
10
|
]
|
|
@@ -33,7 +33,7 @@ bigquery = ["google-cloud-bigquery"]
|
|
|
33
33
|
snowflake = ["snowflake-connector-python"]
|
|
34
34
|
duckdb = ["duckdb"]
|
|
35
35
|
google = ["google-generativeai", "google-cloud-aiplatform"]
|
|
36
|
-
all = ["psycopg2-binary", "db-dtypes", "PyMySQL", "google-cloud-bigquery", "snowflake-connector-python", "duckdb", "openai", "qianfan", "mistralai>=1.0.0", "chromadb", "anthropic", "zhipuai", "marqo", "google-generativeai", "google-cloud-aiplatform", "qdrant-client", "fastembed", "ollama", "httpx", "opensearch-py", "opensearch-dsl", "transformers", "pinecone
|
|
36
|
+
all = ["psycopg2-binary", "db-dtypes", "PyMySQL", "google-cloud-bigquery", "snowflake-connector-python", "duckdb", "openai", "qianfan", "mistralai>=1.0.0", "chromadb", "anthropic", "zhipuai", "marqo", "google-generativeai", "google-cloud-aiplatform", "qdrant-client", "fastembed", "ollama", "httpx", "opensearch-py", "opensearch-dsl", "transformers", "pinecone", "pymilvus[model]","weaviate-client", "azure-search-documents", "azure-identity", "azure-common", "faiss-cpu", "boto", "boto3", "botocore", "langchain_core", "langchain_postgres", "langchain-community", "langchain-huggingface", "xinference-client"]
|
|
37
37
|
test = ["tox"]
|
|
38
38
|
chromadb = ["chromadb"]
|
|
39
39
|
openai = ["openai"]
|
|
@@ -46,7 +46,7 @@ zhipuai = ["zhipuai"]
|
|
|
46
46
|
ollama = ["ollama", "httpx"]
|
|
47
47
|
qdrant = ["qdrant-client", "fastembed"]
|
|
48
48
|
vllm = ["vllm"]
|
|
49
|
-
pinecone = ["pinecone
|
|
49
|
+
pinecone = ["pinecone", "fastembed"]
|
|
50
50
|
opensearch = ["opensearch-py", "opensearch-dsl", "langchain-community", "langchain-huggingface"]
|
|
51
51
|
hf = ["transformers"]
|
|
52
52
|
milvus = ["pymilvus[model]"]
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from openai import OpenAI
|
|
4
|
+
|
|
5
|
+
from ..base import VannaBase
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Cohere_Chat(VannaBase):
|
|
9
|
+
def __init__(self, client=None, config=None):
|
|
10
|
+
VannaBase.__init__(self, config=config)
|
|
11
|
+
|
|
12
|
+
# default parameters - can be overridden using config
|
|
13
|
+
self.temperature = 0.2 # Lower temperature for more precise SQL generation
|
|
14
|
+
self.model = "command-a-03-2025" # Cohere's default model
|
|
15
|
+
|
|
16
|
+
if config is not None:
|
|
17
|
+
if "temperature" in config:
|
|
18
|
+
self.temperature = config["temperature"]
|
|
19
|
+
if "model" in config:
|
|
20
|
+
self.model = config["model"]
|
|
21
|
+
|
|
22
|
+
if client is not None:
|
|
23
|
+
self.client = client
|
|
24
|
+
return
|
|
25
|
+
|
|
26
|
+
# Check for API key in environment variable
|
|
27
|
+
api_key = os.getenv("COHERE_API_KEY")
|
|
28
|
+
|
|
29
|
+
# Check for API key in config
|
|
30
|
+
if config is not None and "api_key" in config:
|
|
31
|
+
api_key = config["api_key"]
|
|
32
|
+
|
|
33
|
+
# Validate API key
|
|
34
|
+
if not api_key:
|
|
35
|
+
raise ValueError("Cohere API key is required. Please provide it via config or set the COHERE_API_KEY environment variable.")
|
|
36
|
+
|
|
37
|
+
# Initialize client with validated API key
|
|
38
|
+
self.client = OpenAI(
|
|
39
|
+
base_url="https://api.cohere.ai/compatibility/v1",
|
|
40
|
+
api_key=api_key,
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
def system_message(self, message: str) -> any:
|
|
44
|
+
return {"role": "developer", "content": message} # Cohere uses 'developer' for system role
|
|
45
|
+
|
|
46
|
+
def user_message(self, message: str) -> any:
|
|
47
|
+
return {"role": "user", "content": message}
|
|
48
|
+
|
|
49
|
+
def assistant_message(self, message: str) -> any:
|
|
50
|
+
return {"role": "assistant", "content": message}
|
|
51
|
+
|
|
52
|
+
def submit_prompt(self, prompt, **kwargs) -> str:
|
|
53
|
+
if prompt is None:
|
|
54
|
+
raise Exception("Prompt is None")
|
|
55
|
+
|
|
56
|
+
if len(prompt) == 0:
|
|
57
|
+
raise Exception("Prompt is empty")
|
|
58
|
+
|
|
59
|
+
# Count the number of tokens in the message log
|
|
60
|
+
# Use 4 as an approximation for the number of characters per token
|
|
61
|
+
num_tokens = 0
|
|
62
|
+
for message in prompt:
|
|
63
|
+
num_tokens += len(message["content"]) / 4
|
|
64
|
+
|
|
65
|
+
# Use model from kwargs, config, or default
|
|
66
|
+
model = kwargs.get("model", self.model)
|
|
67
|
+
if self.config is not None and "model" in self.config and model == self.model:
|
|
68
|
+
model = self.config["model"]
|
|
69
|
+
|
|
70
|
+
print(f"Using model {model} for {num_tokens} tokens (approx)")
|
|
71
|
+
try:
|
|
72
|
+
response = self.client.chat.completions.create(
|
|
73
|
+
model=model,
|
|
74
|
+
messages=prompt,
|
|
75
|
+
temperature=self.temperature,
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
# Check if response has expected structure
|
|
79
|
+
if not response or not hasattr(response, 'choices') or not response.choices:
|
|
80
|
+
raise ValueError("Received empty or malformed response from API")
|
|
81
|
+
|
|
82
|
+
if not response.choices[0] or not hasattr(response.choices[0], 'message'):
|
|
83
|
+
raise ValueError("Response is missing expected 'message' field")
|
|
84
|
+
|
|
85
|
+
if not hasattr(response.choices[0].message, 'content'):
|
|
86
|
+
raise ValueError("Response message is missing expected 'content' field")
|
|
87
|
+
|
|
88
|
+
return response.choices[0].message.content
|
|
89
|
+
|
|
90
|
+
except Exception as e:
|
|
91
|
+
# Log the error and raise a more informative exception
|
|
92
|
+
error_msg = f"Error processing Cohere chat response: {str(e)}"
|
|
93
|
+
print(error_msg)
|
|
94
|
+
raise Exception(error_msg)
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from openai import OpenAI
|
|
4
|
+
|
|
5
|
+
from ..base import VannaBase
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Cohere_Embeddings(VannaBase):
|
|
9
|
+
def __init__(self, client=None, config=None):
|
|
10
|
+
VannaBase.__init__(self, config=config)
|
|
11
|
+
|
|
12
|
+
# Default embedding model
|
|
13
|
+
self.model = "embed-multilingual-v3.0"
|
|
14
|
+
|
|
15
|
+
if config is not None and "model" in config:
|
|
16
|
+
self.model = config["model"]
|
|
17
|
+
|
|
18
|
+
if client is not None:
|
|
19
|
+
self.client = client
|
|
20
|
+
return
|
|
21
|
+
|
|
22
|
+
# Check for API key in environment variable
|
|
23
|
+
api_key = os.getenv("COHERE_API_KEY")
|
|
24
|
+
|
|
25
|
+
# Check for API key in config
|
|
26
|
+
if config is not None and "api_key" in config:
|
|
27
|
+
api_key = config["api_key"]
|
|
28
|
+
|
|
29
|
+
# Validate API key
|
|
30
|
+
if not api_key:
|
|
31
|
+
raise ValueError("Cohere API key is required. Please provide it via config or set the COHERE_API_KEY environment variable.")
|
|
32
|
+
|
|
33
|
+
# Initialize client with validated API key
|
|
34
|
+
self.client = OpenAI(
|
|
35
|
+
base_url="https://api.cohere.ai/compatibility/v1",
|
|
36
|
+
api_key=api_key,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
def generate_embedding(self, data: str, **kwargs) -> list[float]:
|
|
40
|
+
if not data:
|
|
41
|
+
raise ValueError("Cannot generate embedding for empty input data")
|
|
42
|
+
|
|
43
|
+
# Use model from kwargs, config, or default
|
|
44
|
+
model = kwargs.get("model", self.model)
|
|
45
|
+
if self.config is not None and "model" in self.config and model == self.model:
|
|
46
|
+
model = self.config["model"]
|
|
47
|
+
|
|
48
|
+
try:
|
|
49
|
+
embedding = self.client.embeddings.create(
|
|
50
|
+
model=model,
|
|
51
|
+
input=data,
|
|
52
|
+
encoding_format="float", # Ensure we get float values
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
# Check if response has expected structure
|
|
56
|
+
if not embedding or not hasattr(embedding, 'data') or not embedding.data:
|
|
57
|
+
raise ValueError("Received empty or malformed embedding response from API")
|
|
58
|
+
|
|
59
|
+
if not embedding.data[0] or not hasattr(embedding.data[0], 'embedding'):
|
|
60
|
+
raise ValueError("Embedding response is missing expected 'embedding' field")
|
|
61
|
+
|
|
62
|
+
if not embedding.data[0].embedding:
|
|
63
|
+
raise ValueError("Received empty embedding vector")
|
|
64
|
+
|
|
65
|
+
return embedding.data[0].embedding
|
|
66
|
+
|
|
67
|
+
except Exception as e:
|
|
68
|
+
# Log the error and raise a more informative exception
|
|
69
|
+
error_msg = f"Error generating embedding with Cohere: {str(e)}"
|
|
70
|
+
print(error_msg)
|
|
71
|
+
raise Exception(error_msg)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|